//primary key(index_table_schema, index_table, index_name, column_schema, column_table, column_name)
//foreign key(index_table_schema, index_table_name, index_name)
// references INDEXES (table_schema, table_name, index_name)
//foreign key (column_schema, column_table, column_name)
// references COLUMNS (table_schema, table_name, column_name)
builder.table(SEQUENCES)
.colString("sequence_catalog", IDENT_MAX, true)
.colString("sequence_schema", IDENT_MAX, false)
.colString("sequence_name", IDENT_MAX, false)
.colString("data_type", DESCRIPTOR_MAX, false)
.colBigInt("start_value", false)