summaryrefslogtreecommitdiff
path: root/mysql-test
diff options
context:
space:
mode:
authorserg@serg.mylan <>2003-10-06 20:11:39 +0200
committerserg@serg.mylan <>2003-10-06 20:11:39 +0200
commit511589a4f820d7ff31dda49531bd0dfba26ac9e3 (patch)
treec2dbb57f6037c607baafce27e4bfad04ae62747e /mysql-test
parentb58098c3b9652434c99784ce982471931706ded4 (diff)
downloadmariadb-git-511589a4f820d7ff31dda49531bd0dfba26ac9e3.tar.gz
results updated
Diffstat (limited to 'mysql-test')
-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;