Was this page helpful?
Caution
You're viewing documentation for an unstable version of ScyllaDB Node.js Driver. Switch to the latest stable version.
TableMetadata¶
metadata~TableMetadata()
Describes a table in the cluster.
Constructor¶
new TableMetadata()
Members¶
clusteringKey :Array<String>
Names of the columns that constitute the clustering key. All names are guaranteed to be present in columns.
Type:
- Array<String>
columns :Object<String, ColumnMetadata>
Columns that constitute the table, keyed by column name.
This type does not contain information about the order of the columns in the table.
Type:
- Object<String, ColumnMetadata>
partitionKey :Array<String>
Names of the columns that constitute the partition key. All names are guaranteed to be present in columns.
Type:
- Array<String>
partitioner :String|null
Name of the partitioner used by the table, or null if not set.
Type:
- String | null