系统表
查询 Table 信息
类似于 Mysql’s information_schema.tables
, HoraeDB 提供 system.public.tables
存储表信息。
system.public.tables
表的列如下 :
- timestamp([TimeStamp])
- catalog([String])
- schema([String])
- table_name([String])
- table_id([Uint64])
- engine([String])
通过表名查询表信息示例如下:
1
2
3
4
5
| curl --location --request POST 'http://localhost:5000/sql' \
--header 'Content-Type: application/json' \
-d '{
"query": "select * from system.public.tables where `table_name`=\"my_table\""
}'
|
返回结果
1
2
3
4
5
6
7
8
9
10
11
| {
"rows":[
{
"timestamp":0,
"catalog":"horaedb",
"schema":"public",
"table_name":"my_table",
"table_id":3298534886446,
"engine":"Analytic"
}
}
|