Add a column to the hash table using the default column family. The proper row will be created if it doesn't exist. If the column already exists, the original value will be overwritten with the new data. Uses the default table and family @param key The row key @param qualifier The qualifier @param v
(final byte[] key, final byte[] qualifier,
final byte[] value, final long timestamp)
| 256 | * @param timestamp The timestamp of cell |
| 257 | */ |
| 258 | public void addColumn(final byte[] key, final byte[] qualifier, |
| 259 | final byte[] value, final long timestamp) { |
| 260 | addColumn(default_table, key, default_family, qualifier, value, |
| 261 | timestamp); |
| 262 | } |
| 263 | |
| 264 | /** |
| 265 | * Add a column to the hash table using the default column family. |
no test coverage detected