summaryrefslogtreecommitdiff
path: root/mysql-test/r/create.result
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2003-10-06 20:11:39 +0200
committerunknown <serg@serg.mylan>2003-10-06 20:11:39 +0200
commit93e1bbf671d775095fc0d7600bd817e85131a5f2 (patch)
treec2dbb57f6037c607baafce27e4bfad04ae62747e /mysql-test/r/create.result
parente86fc82cf27303a0fe165b4567291ae228491302 (diff)
downloadmariadb-git-93e1bbf671d775095fc0d7600bd817e85131a5f2.tar.gz
results updated
Diffstat (limited to 'mysql-test/r/create.result')
-rw-r--r--mysql-test/r/create.result22
1 files changed, 22 insertions, 0 deletions
diff --git a/mysql-test/r/create.result b/mysql-test/r/create.result
index e6192eb6ccb..51952009f08 100644
--- a/mysql-test/r/create.result
+++ b/mysql-test/r/create.result
@@ -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;