mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
be831d09f7
* [WIP] * Update skip-list * Update ci_config.json * Do not sync inserts for test * Fix more tests * Fix another test * Enable one more test * More fixed tests * More test fixes * Do not absolutize server path for now * More test fixes * Unset CLICKHOUSE_LOG_COMMENT where necessary * Remove debugging set -e * Fix more tests * Fix test reference * Fix style check
34 lines
1.3 KiB
Plaintext
34 lines
1.3 KiB
Plaintext
-- { echo }
|
|
create table values_01564(
|
|
a int,
|
|
constraint c1 check a < 10) engine Memory;
|
|
-- client error hint after broken insert values
|
|
insert into values_01564 values ('f'); -- { clientError 6 }
|
|
insert into values_01564 values ('f'); -- { clientError 6 }
|
|
select 1;
|
|
1
|
|
insert into values_01564 values ('f'); -- { clientError 6 }
|
|
select nonexistent column; -- { serverError 47 }
|
|
select 1;
|
|
1
|
|
select nonexistent column; -- { serverError 47 }
|
|
-- server error hint after broken insert values (violated constraint)
|
|
insert into values_01564 values (11); -- { serverError 469 }
|
|
insert into values_01564 values (11); -- { serverError 469 }
|
|
select 1;
|
|
1
|
|
insert into values_01564 values (11); -- { serverError 469 }
|
|
select nonexistent column; -- { serverError 47 }
|
|
-- query after values on the same line
|
|
insert into values_01564 values (1); select 1;
|
|
select 1;
|
|
1
|
|
-- a failing insert and then a normal insert (#https://github.com/ClickHouse/ClickHouse/issues/19353)
|
|
CREATE TABLE t0 (c0 String, c1 Int32) ENGINE = Memory() ;
|
|
INSERT INTO t0(c0, c1) VALUES ("1",1) ; -- { clientError 47 }
|
|
INSERT INTO t0(c0, c1) VALUES ('1', 1) ;
|
|
-- the return code must be zero after the final query has failed with expected error
|
|
insert into values_01564 values (11); -- { serverError 469 }
|
|
drop table t0;
|
|
drop table values_01564;
|