struct CassIndexMeta
Index metadata
Functions
void
cass_index_meta_name
( index_meta, name, name_length )Gets the name of the index.
CassIndexType
cass_index_meta_type
( index_meta )Gets the type of the index.
void
cass_index_meta_target
( index_meta, target, target_length )Gets the target of the index.
const CassValue *
cass_index_meta_options
( index_meta )Gets the options of the index.
const CassValue *
cass_index_meta_field_by_name
( index_meta, name )Gets a metadata field for the provided name. Metadata fields allow direct access to the index data found in the underlying “indexes” metadata table.
const CassValue *
cass_index_meta_field_by_name_n
( index_meta, name, name_length )Same as CassIndexMeta::cass_index_meta_field_by_name
, but with lengths for string parameters.
CassIterator *
cass_iterator_fields_from_index_meta
( index_meta )Creates a new fields iterator for the specified index metadata. Metadata fields allow direct access to the index data found in the underlying “indexes” metadata table. This can be used to iterate those metadata field entries.