Files
greptimedb/tests/cases/standalone/common/create/upper_case_table_name.result
Ruihang Xia 56fc77e573 fix: add missing error display message (#2791)
* 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>
2023-11-23 02:59:49 +00:00

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