#include "SSTable.h"
int SSTable::isIndexed(int colIndex);
isIndexed tells whether a given column is searchable or not.
| colIndex | The index of the column |
Returns 0 if the column is not searchable or the index is out of range. Otherwise, the column is searchable and a value of 1 is returned.
| None |