Total number of columns in the given row across all column families in the default table @param key The row to search for @return -1 if the row did not exist, otherwise the number of columns.
(final byte[] key)
| 446 | * @return -1 if the row did not exist, otherwise the number of columns. |
| 447 | */ |
| 448 | public long numColumns(final byte[] key) { |
| 449 | return numColumns(default_table, key); |
| 450 | } |
| 451 | |
| 452 | /** |
| 453 | * Total number of columns in the given row across all column families in the |
no test coverage detected