Files
greptimedb/tests/cases/standalone/common/insert/insert_select.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

46 lines
1.3 KiB
Plaintext

create table demo1(host string, cpu double, memory double, ts timestamp time index);
Affected Rows: 0
create table demo2(host string, cpu double, memory double, ts timestamp time index);
Affected Rows: 0
insert into demo1(host, cpu, memory, ts) values ('host1', 66.6, 1024, 1655276557000), ('host2', 88.8, 333.3, 1655276558000);
Affected Rows: 2
insert into demo2(host) select * from demo1;
Error: 3000(PlanQuery), Failed to plan SQL: Error during planning: Column count doesn't match insert query!
insert into demo2 select cpu,memory from demo1;
Error: 3000(PlanQuery), Failed to plan SQL: Error during planning: Column count doesn't match insert query!
insert into demo2(ts) select memory from demo1;
Error: 3000(PlanQuery), Failed to plan SQL: Error during planning: Cannot automatically convert Float64 to Timestamp(Millisecond, None)
insert into demo2 select * from demo1;
Affected Rows: 2
select * from demo2 order by ts;
+-------+------+--------+---------------------+
| host | cpu | memory | ts |
+-------+------+--------+---------------------+
| host1 | 66.6 | 1024.0 | 2022-06-15T07:02:37 |
| host2 | 88.8 | 333.3 | 2022-06-15T07:02:38 |
+-------+------+--------+---------------------+
drop table demo1;
Affected Rows: 0
drop table demo2;
Affected Rows: 0