mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-11 07:42:54 +00:00
* fix: order by asc check * feat: print selector in explain * test: move last_value opt test to standalone * test: sqlness remove space * test: update regex for datetime * test: fix partitioning * chore: update comment Co-authored-by: Ruihang Xia <waynestxia@gmail.com> --------- Co-authored-by: Ruihang Xia <waynestxia@gmail.com>
30 lines
585 B
SQL
30 lines
585 B
SQL
SHOW DATABASES;
|
|
|
|
SHOW FULL DATABASES;
|
|
|
|
USE information_schema;
|
|
|
|
SHOW TABLES;
|
|
|
|
SHOW TABLES LIKE 'tables';
|
|
|
|
SHOW FULL TABLES;
|
|
|
|
-- SQLNESS REPLACE (\s[\-0-9T:\.]{15,}) DATETIME
|
|
-- SQLNESS REPLACE [\u0020\-]+
|
|
SHOW TABLE STATUS;
|
|
|
|
-- SQLNESS REPLACE (\s[\-0-9T:\.]{15,}) DATETIME
|
|
-- SQLNESS REPLACE [\u0020\-]+
|
|
SHOW TABLE STATUS LIKE 'tables';
|
|
|
|
-- SQLNESS REPLACE (\s[\-0-9T:\.]{15,}) DATETIME
|
|
-- SQLNESS REPLACE [\u0020\-]+
|
|
SHOW TABLE STATUS WHERE Name = 'tables';
|
|
|
|
-- SQLNESS REPLACE (\s[\-0-9T:\.]{15,}) DATETIME
|
|
-- SQLNESS REPLACE [\u0020\-]+
|
|
SHOW TABLE STATUS from public;
|
|
|
|
USE public;
|