Return the total number of column families for the row in the default table @param key The row to search for @return -1 if the table or row did not exist, otherwise the number of column families.
(final byte[] key)
| 414 | * column families. |
| 415 | */ |
| 416 | public int numColumnFamilies(final byte[] key) { |
| 417 | return numColumnFamilies(default_table, key); |
| 418 | } |
| 419 | |
| 420 | /** |
| 421 | * Return the number of column families for the given row key in the given table. |