TableMeta indicates the structure information of a table.
Data structure
message TableMeta {
required string table_name = 1;
repeated PrimaryKeySchema primary_key = 2;
}
table_name:
-
Type: string
-
The name of the table.
primary_key:
-
Type: repeated PrimaryKeySchema
-
All primary key columns for the table.