mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-08 22:32:55 +00:00
* try resolve catalog and schema Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix clippy Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * upload sqlness case Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix information schema case Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix unnamed table name Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * fix clippy Signed-off-by: Ruihang Xia <waynestxia@gmail.com> --------- Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
16 lines
267 B
SQL
16 lines
267 B
SQL
create database upper_case_table_name;
|
|
|
|
use upper_case_table_name;
|
|
|
|
create table system_Metric(ts timestamp time index);
|
|
|
|
insert into system_Metric values (0), (1);
|
|
|
|
select * from system_Metric;
|
|
|
|
select * from "system_Metric";
|
|
|
|
drop table system_Metric;
|
|
|
|
use public;
|