Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
// When `columns` is empty, the semantics of the following constructors is that every column will be retrieved or deleted.
// The proposed change will make it so that empty columns will mean no columns are retrieved or deleted.


// Get.java
 
public Get(byte[] row, byte[]... columns) {

public Get(byte[] row, Collection<byte[]> columns) {


public Get(String row, String... columns) {

public Get(String row, Collection<String> columns) { 


// Delete.java

public Delete(byte[] row, byte[]... columns) {
 
public Delete(byte[] row, Collection<byte[]> columns) {

public Delete(String row, String... columns) { 

// The following method will be added for consistency (it is currently not there)
public Delete(byte[] row, Collection<byte[]>Collection<String> columns) {