创建索引后在information_schema.table_constraints系统字典表中查不到吗?

创建索引后在information_schema.table_constraints系统字典表中查不到吗?

查询索引可以使用以下命令:
SHOW INDEX FROM test;
参考:https://www.oceanbase.com/docs/common-oceanbase-database-cn-1000000000220206
information_schema.table_constraints 显示的是表的“约束”,比如主键就是一种约束。索引不是约束,如果只是建索引,那么 table_constraints 表里面是查询不到的。

那请问OB存索引信息的字典表是哪个呢?
我记得mysql是有相关字典表的。

information_schema.statistics

多谢,可用。