Constructor to delete an entire row. These byte arrays will NOT be copied. @param table The table to edit. @param key The key of the row to edit in that table. @throws IllegalArgumentException if any argument is malformed.
(final byte[] table, final byte[] key)
| 79 | * @throws IllegalArgumentException if any argument is malformed. |
| 80 | */ |
| 81 | public DeleteRequest(final byte[] table, final byte[] key) { |
| 82 | this(table, key, null, null, KeyValue.TIMESTAMP_NOW, RowLock.NO_LOCK); |
| 83 | } |
| 84 | |
| 85 | /** |
| 86 | * Constructor to delete an entire row before a specific timestamp. |
nothing calls this directly
no test coverage detected