mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-07 22:02:56 +00:00
* fix: add missing error display message Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * update sqlness result Signed-off-by: Ruihang Xia <waynestxia@gmail.com> --------- Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
38 lines
675 B
Plaintext
38 lines
675 B
Plaintext
create database upper_case_table_name;
|
|
|
|
Affected Rows: 1
|
|
|
|
use upper_case_table_name;
|
|
|
|
Affected Rows: 0
|
|
|
|
create table system_Metric(ts timestamp time index);
|
|
|
|
Affected Rows: 0
|
|
|
|
insert into system_Metric values (0), (1);
|
|
|
|
Affected Rows: 2
|
|
|
|
select * from system_Metric;
|
|
|
|
Error: 3000(PlanQuery), Failed to plan SQL: Error during planning: Table not found: greptime.upper_case_table_name.system_metric
|
|
|
|
select * from "system_Metric";
|
|
|
|
+-------------------------+
|
|
| ts |
|
|
+-------------------------+
|
|
| 1970-01-01T00:00:00 |
|
|
| 1970-01-01T00:00:00.001 |
|
|
+-------------------------+
|
|
|
|
drop table system_Metric;
|
|
|
|
Affected Rows: 0
|
|
|
|
use public;
|
|
|
|
Affected Rows: 0
|
|
|