Retrieve the most recent contents of a single column with the default family and in the default table @param key The row key of the column @param qualifier The column qualifier @return The byte array of data or null if not found
(final byte[] key, final byte[] qualifier)
| 511 | * @return The byte array of data or null if not found |
| 512 | */ |
| 513 | public byte[] getColumn(final byte[] key, final byte[] qualifier) { |
| 514 | return getColumn(default_table, key, default_family, qualifier); |
| 515 | } |
| 516 | |
| 517 | /** |
| 518 | * Retrieve the most recent contents of a single column with the default table |
no test coverage detected