mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
results updated
This commit is contained in:
@ -178,3 +178,25 @@ Column 'k1' cannot be null
|
||||
drop table t1;
|
||||
create table t1 select x'4132';
|
||||
drop table t1;
|
||||
create table t1 select 1,2,3;
|
||||
create table if not exists t1 select 1,2;
|
||||
create table if not exists t1 select 1,2,3,4;
|
||||
Column count doesn't match value count at row 1
|
||||
create table if not exists t1 select 1;
|
||||
select * from t1;
|
||||
1 2 3
|
||||
1 2 3
|
||||
0 1 2
|
||||
0 0 1
|
||||
drop table t1;
|
||||
create table t1 select 1,2,3;
|
||||
create table if not exists t1 select 1,2;
|
||||
create table if not exists t1 select 1,2,3,4;
|
||||
Column count doesn't match value count at row 1
|
||||
create table if not exists t1 select 1;
|
||||
select * from t1;
|
||||
1 2 3
|
||||
1 2 3
|
||||
0 1 2
|
||||
0 0 1
|
||||
drop table t1;
|
||||
|
Reference in New Issue
Block a user