Files
greptimedb/tests/cases/standalone/common/describe/describe_table.sql
Ruihang Xia 4fa8340572 feat: support desc [table] <table_name> (#1944)
* feat: support desc [table]

Signed-off-by: Ruihang Xia <waynestxia@gmail.com>

* refine style

Signed-off-by: Ruihang Xia <waynestxia@gmail.com>

---------

Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
2023-07-12 06:41:31 +00:00

18 lines
262 B
SQL

create table host_load1(
ts timestamp time index,
collector string,
host string,
val double,
primary key (collector, host)
);
describe table host_load1;
describe host_load1;
desc table host_load1;
desc host_load1;
drop table host_load1;