create.test 17.5 KB
Newer Older
1 2 3 4
#
# Check some special create statements.
#

5
--disable_warnings
6
drop table if exists t1,t2,t3,t4,t5;
7
drop database if exists mysqltest;
8 9
--enable_warnings

10 11 12 13 14 15 16 17 18
create table t1 (b char(0));
insert into t1 values (""),(null);
select * from t1;
drop table if exists t1;

create table t1 (b char(0) not null);
create table if not exists t1 (b char(0) not null);
insert into t1 values (""),(null);
select * from t1;
19
drop table t1;
20

21
create table t1 (a int not null auto_increment,primary key (a)) engine=heap;
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
22 23
drop table t1;

24 25 26 27
#
# Test of some CREATE TABLE'S that should fail
#

28
--error 1146
29
create table t2 engine=heap select * from t1;
30 31
--error 1146
create table t2 select auto+1 from t1;
32
drop table if exists t1,t2;
33 34 35
--error 1167
create table t1 (b char(0) not null, index(b));
--error 1163
36
create table t1 (a int not null,b text) engine=heap;
37 38
drop table if exists t1;

monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
39
--error 1075
40
create table t1 (ordid int(8) not null auto_increment, ord  varchar(50) not null, primary key (ord,ordid)) engine=heap;
41

42
-- error 1049
43
create table not_existing_database.test (a int);
44
--error 1103
45
create table `a/a` (a int);
46
--error 1103
47 48 49
create table `aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa` (aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa int);
--error 1059
create table a (`aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa` int);
50

51
#
52
# Some wrong defaults, so these creates should fail too (Bug #5902)
53 54
#
--error 1067
55
create table t1 (a datetime default now());
56
--error 1294
57
create table t1 (a datetime on update now());
58
--error 1067
59 60 61 62 63 64 65 66 67 68 69 70
create table t1 (a int default 100 auto_increment);
--error 1067
create table t1 (a tinyint default 1000);
--error 1067
create table t1 (a varchar(5) default 'abcdef');

create table t1 (a varchar(5) default 'abcde');
insert into t1 values();
select * from t1;
--error 1067
alter table t1 alter column a set default 'abcdef';
drop table t1;
71

72 73 74 75 76 77 78 79 80 81
#
# test of dummy table names
#

create table 1ea10 (1a20 int,1e int);
insert into 1ea10 values(1,1);
select 1ea10.1a20,1e+ 1e+10 from 1ea10;
drop table 1ea10;
create table t1 (t1.index int);
drop table t1;
82
# Test that we get warning for this
83 84 85 86 87 88 89 90
drop database if exists mysqltest;
create database mysqltest;
create table mysqltest.$test1 (a$1 int, $b int, c$ int);
insert into mysqltest.$test1 values (1,2,3);
select a$1, $b, c$ from mysqltest.$test1;
create table mysqltest.test2$ (a int);
drop table mysqltest.test2$;
drop database mysqltest;
91

92
--error 1103
93
create table `` (a int);
94
--error 1103
95
drop table if exists ``;
96
--error 1166
97
create table t1 (`` int);
monty@mysql.com's avatar
monty@mysql.com committed
98
--error 1280
99
create table t1 (i int, index `` (i)); 
100

101 102 103 104 105 106 107 108 109 110
#
# Test of CREATE ... SELECT with indexes
#

create table t1 (a int auto_increment not null primary key, B CHAR(20));
insert into t1 (b) values ("hello"),("my"),("world");
create table t2 (key (b)) select * from t1;
explain select * from t2 where b="world";
select * from t2 where b="world";
drop table t1,t2;
111 112 113 114 115 116 117 118 119

#
# Test types after CREATE ... SELECT
#

create table t1(x varchar(50) );
create table t2 select x from t1 where 1=2;
describe t1;
describe t2;
120 121 122
drop table t2;
create table t2 select now() as a , curtime() as b, curdate() as c , 1+1 as d , 1.0 + 1 as e , 33333333333333333 + 3 as f;
describe t2;
123
drop table t2;
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
124
create table t2 select CAST("2001-12-29" AS DATE) as d, CAST("20:45:11" AS TIME) as t, CAST("2001-12-29  20:45:11" AS DATETIME) as dt;
125
describe t2;
126
drop table t1,t2;
monty@hundin.mysql.fi's avatar
merge  
monty@hundin.mysql.fi committed
127

128 129 130 131 132 133 134 135 136
#
# Test of CREATE ... SELECT with duplicate fields
#

create table t1 (a tinyint);
create table t2 (a int) select * from t1;                        
describe t1;
describe t2;
drop table if exists t2;
137 138
--error 1060
create table t2 (a int, a float) select * from t1;               
139
drop table if exists t2;
140 141
--error 1060
create table t2 (a int) select a as b, a+1 as b from t1;         
142
drop table if exists t2;
143 144
--error 1060
create table t2 (b int) select a as b, a+1 as b from t1;         
145 146
drop table if exists t1,t2;

147 148 149 150 151 152 153 154 155 156 157 158 159
#
# Test CREATE ... SELECT when insert fails
#

CREATE TABLE t1 (a int not null);
INSERT INTO t1 values (1),(2),(1);
--error 1062
CREATE TABLE t2 (primary key(a)) SELECT * FROM t1;
--error 1146
SELECT * from t2;
DROP TABLE t1;
DROP TABLE IF EXISTS t2;

160 161 162 163 164 165 166
#
# Test of primary key with 32 index
#

create table t1 (a int not null, b int, primary key(a), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b), key (b));
show create table t1;
drop table t1;
167 168
create table t1 select if(1,'1','0'), month("2002-08-02");
drop table t1;
169 170 171
create table t1 select if('2002'='2002','Y','N');
select * from t1;
drop table if exists t1;
172 173 174 175

#
# Test default table type
#
176 177
SET SESSION storage_engine="heap";
SELECT @@storage_engine;
178 179 180
CREATE TABLE t1 (a int not null);
show create table t1;
drop table t1;
monty@mysql.com's avatar
monty@mysql.com committed
181
--error 1286
182 183
SET SESSION storage_engine="gemini";
SELECT @@storage_engine;
184 185
CREATE TABLE t1 (a int not null);
show create table t1;
186
SET SESSION storage_engine=default;
187 188
drop table t1;

189 190 191 192 193 194

#
# ISO requires that primary keys are implicitly NOT NULL
#
create table t1 ( k1 varchar(2), k2 int, primary key(k1,k2));
insert into t1 values ("a", 1), ("b", 2);
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
195 196 197 198 199 200 201
--error 1048
insert into t1 values ("c", NULL);
--error 1048
insert into t1 values (NULL, 3);
--error 1048
insert into t1 values (NULL, NULL);
drop table t1;
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
202

203
#
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
204
# Bug # 801
205 206 207 208
#

create table t1 select x'4132';
drop table t1;
209 210 211 212 213 214 215 216 217 218 219 220 221

#
# bug #1434
#

create table t1 select 1,2,3;
create table if not exists t1 select 1,2;
--error 1136
create table if not exists t1 select 1,2,3,4;
create table if not exists t1 select 1;
select * from t1;
drop table t1;

222 223 224 225 226 227 228 229 230 231 232 233 234
#
# Test create table if not exists with duplicate key error
#

create table t1 (a int not null, b int, primary key (a));
insert into t1 values (1,1);
create table if not exists t1 select 2;
select * from t1;
create table if not exists t1 select 3 as 'a',4 as 'b';
--error 1062
create table if not exists t1 select 3 as 'a',3 as 'b';
select * from t1;
drop table t1;
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
235

vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
236 237 238 239 240 241 242 243 244
#
# Test for Bug #2985 
#   "Table truncated when creating another table name with Spaces"
#

--error 1103
create table `t1 `(a int);
--error 1102
create database `db1 `;
245
--error 1166
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
246
create table t1(`a ` int);
monty@mysql.com's avatar
monty@mysql.com committed
247

248 249 250 251 252 253 254 255 256 257 258
#
# Test for Bug #3481 
#   "Parser permits multiple commas without syntax error"
#

--error 1064
create table t1 (a int,);
--error 1064
create table t1 (a int,,b int);
--error 1064
create table t1 (,b int);
monty@mysql.com's avatar
monty@mysql.com committed
259

monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
260 261 262 263
#
# Test create with foreign keys
#

264 265 266
create table t1 (a int, key(a));
create table t2 (b int, foreign key(b) references t1(a), key(b));
drop table if exists t1,t2;
venu@myvenu.com's avatar
venu@myvenu.com committed
267 268 269 270 271 272 273 274 275 276 277 278

#
# Test for CREATE TABLE .. LIKE ..
#

create table t1(id int not null, name char(20));
insert into t1 values(10,'mysql'),(20,'monty- the creator');
create table t2(id int not null);
insert into t2 values(10),(20);
create table t3 like t1;
show create table t3;
select * from t3;
279
# Disable PS becasue of @@warning_count
venu@myvenu.com's avatar
venu@myvenu.com committed
280
create table if not exists t3 like t1;
monty@mysql.com's avatar
monty@mysql.com committed
281
--disable_ps_protocol
venu@myvenu.com's avatar
venu@myvenu.com committed
282
select @@warning_count;
283
--enable_ps_protocol
venu@myvenu.com's avatar
venu@myvenu.com committed
284 285 286 287 288 289
create temporary table t3 like t2;
show create table t3;
select * from t3;
drop table t3;
show create table t3;
select * from t3;
290
drop table t2, t3;
291 292 293
create database mysqltest;
create table mysqltest.t3 like t1;
create temporary table t3 like mysqltest.t3;
venu@myvenu.com's avatar
venu@myvenu.com committed
294
show create table t3;
295 296 297
create table t2 like t3;
show create table t2;
select * from t2;
venu@myvenu.com's avatar
venu@myvenu.com committed
298
create table t3 like t1;
299
--error 1050
300
create table t3 like mysqltest.t3;
301
--error 1049
venu@myvenu.com's avatar
venu@myvenu.com committed
302
create table non_existing_database.t1 like t1;
303 304 305 306
--error 1051
create table t3 like non_existing_table;
--error 1050
create temporary table t3 like t1;
307
--error 1103
308
create table t3 like `a/a`;
venu@myvenu.com's avatar
venu@myvenu.com committed
309 310
drop table t1, t2, t3;
drop table t3;
311
drop database mysqltest;
venu@myvenu.com's avatar
venu@myvenu.com committed
312

313 314 315
#
# Test default table type
#
316 317
SET SESSION storage_engine="heap";
SELECT @@storage_engine;
318 319 320
CREATE TABLE t1 (a int not null);
show create table t1;
drop table t1;
monty@mysql.com's avatar
monty@mysql.com committed
321
--error 1286
322 323
SET SESSION storage_engine="gemini";
SELECT @@storage_engine;
324 325
CREATE TABLE t1 (a int not null);
show create table t1;
326
SET SESSION storage_engine=default;
327
drop table t1;
328

329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
#
# Test types of data for create select with functions
#

create table t1(a int,b int,c int unsigned,d date,e char,f datetime,g time,h blob);
insert into t1(a)values(1);
insert into t1(a,b,c,d,e,f,g,h)
values(2,-2,2,'1825-12-14','a','2003-1-1 3:2:1','4:3:2','binary data');
select * from t1;
select a, 
    ifnull(b,cast(-7 as signed)) as b, 
    ifnull(c,cast(7 as unsigned)) as c, 
    ifnull(d,cast('2000-01-01' as date)) as d, 
    ifnull(e,cast('b' as char)) as e,
    ifnull(f,cast('2000-01-01' as datetime)) as f, 
    ifnull(g,cast('5:4:3' as time)) as g,
    ifnull(h,cast('yet another binary data' as binary)) as h,
    addtime(cast('1:0:0' as time),cast('1:0:0' as time)) as dd 
from t1;

create table t2
select
    a, 
    ifnull(b,cast(-7                        as signed))   as b,
    ifnull(c,cast(7                         as unsigned)) as c,
    ifnull(d,cast('2000-01-01'              as date))     as d,
    ifnull(e,cast('b'                       as char))     as e,
    ifnull(f,cast('2000-01-01'              as datetime)) as f,
    ifnull(g,cast('5:4:3'                   as time))     as g,
    ifnull(h,cast('yet another binary data' as binary))   as h,
    addtime(cast('1:0:0' as time),cast('1:0:0' as time))  as dd
from t1;
explain t2;
select * from t2;
drop table t1, t2;
vva@eagle.mysql.r18.ru's avatar
Merge  
vva@eagle.mysql.r18.ru committed
364

365 366 367 368 369 370 371 372
create table t1 (a tinyint, b smallint, c mediumint, d int, e bigint, f float(3,2), g double(4,3), h decimal(5,4), i year, j date, k timestamp, l datetime, m enum('a','b'), n set('a','b'), o char(10));
create table t2 select ifnull(a,a), ifnull(b,b), ifnull(c,c), ifnull(d,d), ifnull(e,e), ifnull(f,f), ifnull(g,g), ifnull(h,h), ifnull(i,i), ifnull(j,j), ifnull(k,k), ifnull(l,l), ifnull(m,m), ifnull(n,n), ifnull(o,o) from t1;
show create table t2;
drop table t1,t2;

#
# Test of default()
#
373 374 375 376 377 378 379
create table t1(str varchar(10) default 'def',strnull varchar(10),intg int default '10',rel double default '3.14');
insert into t1 values ('','',0,0.0);
describe t1;
create table t2 select default(str) as str, default(strnull) as strnull, default(intg) as intg, default(rel) as rel from t1;
describe t2;
drop table t1, t2;

380 381 382 383 384 385 386 387 388 389
#
# Bug #2075
#

create table t1(name varchar(10), age smallint default -1);
describe t1;
create table t2(name varchar(10), age smallint default - 1);
describe t2;
drop table t1, t2;

390 391 392 393 394 395 396 397 398
#
# test for bug #1427 "enum allows duplicate values in the list"
#

create table t1(cenum enum('a'), cset set('b'));
create table t2(cenum enum('a','a'), cset set('b','b'));
create table t3(cenum enum('a','A','a','c','c'), cset set('b','B','b','d','d'));
drop table t1, t2, t3;

399 400 401 402
#
# Bug #1209
#

403 404
create database mysqltest;
use mysqltest;
405
select database();
406
drop database mysqltest;
407 408
select database();

409 410
# Connect without a database as user mysqltest_1
create user mysqltest_1;
serg@serg.mylan's avatar
serg@serg.mylan committed
411 412 413 414 415
connect (user1,localhost,mysqltest_1,,*NO-ONE*);
connection user1;
select database(), user();
connection default;
disconnect user1;
416
drop user mysqltest_1;
serg@serg.mylan's avatar
serg@serg.mylan committed
417
use test;
418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446

#
# Test for Bug 856 'Naming a key "Primary" causes trouble'
#

--error 1280
create table t1 (a int, index `primary` (a));
--error 1280
create table t1 (a int, index `PRIMARY` (a));

create table t1 (`primary` int, index(`primary`));
show create table t1;
create table t2 (`PRIMARY` int, index(`PRIMARY`));
show create table t2;

create table t3 (a int);
--error 1280
alter table t3 add index `primary` (a);
--error 1280
alter table t3 add index `PRIMARY` (a);

create table t4 (`primary` int);
alter table t4 add index(`primary`);
show create table t4;
create table t5 (`PRIMARY` int);
alter table t5 add index(`PRIMARY`);
show create table t5;

drop table t1, t2, t3, t4, t5;
447 448 449 450 451 452 453 454 455 456 457 458 459 460

#
# bug #3266 TEXT in CREATE TABLE SELECT
#

CREATE TABLE t1(id varchar(10) NOT NULL PRIMARY KEY, dsc longtext);
INSERT INTO t1 VALUES ('5000000001', NULL),('5000000003', 'Test'),('5000000004', NULL);
CREATE TABLE t2(id varchar(15) NOT NULL, proc varchar(100) NOT NULL, runID varchar(16) NOT NULL, start datetime NOT NULL, PRIMARY KEY  (id,proc,runID,start));

INSERT INTO t2 VALUES ('5000000001', 'proc01', '20031029090650', '2003-10-29 13:38:40'),('5000000001', 'proc02', '20031029090650', '2003-10-29 13:38:51'),('5000000001', 'proc03', '20031029090650', '2003-10-29 13:38:11'),('5000000002', 'proc09', '20031024013310', '2003-10-24 01:33:11'),('5000000002', 'proc09', '20031024153537', '2003-10-24 15:36:04'),('5000000004', 'proc01', '20031024013641', '2003-10-24 01:37:29'),('5000000004', 'proc02', '20031024013641', '2003-10-24 01:37:39');

CREATE TABLE t3  SELECT t1.dsc,COUNT(DISTINCT t2.id) AS countOfRuns  FROM t1 LEFT JOIN t2 ON (t1.id=t2.id) GROUP BY t1.id;
SELECT * FROM t3;
drop table t1, t2, t3;
461 462 463 464 465 466 467 468 469 470 471

#
# Bug#9666: Can't use 'DEFAULT FALSE' for column of type bool
#
create table t1 (b bool not null default false);
create table t2 (b bool not null default true);
insert into t1 values ();
insert into t2 values ();
select * from t1;
select * from t2;
drop table t1,t2;
472

473 474 475 476 477 478 479 480 481 482 483 484 485 486
#
# Bug#10224 - ANALYZE TABLE crashing with simultaneous
# CREATE ... SELECT statement.
# This tests two additional possible errors and a hang if 
# an improper fix is present.
#
create table t1 (a int);
--error 1093
create table t1 select * from t1;
--error 1093
create table t2 union = (t1) select * from t1;
flush tables with read lock;
unlock tables;
drop table t1;
ingo@mysql.com's avatar
Merge  
ingo@mysql.com committed
487

488 489 490 491 492 493 494 495 496 497 498 499
#
# Bug#10413: Invalid column name is not rejected
#
--error 1103
create table t1(column.name int);
--error 1103
create table t1(test.column.name int);
--error 1102
create table t1(xyz.t1.name int);
create table t1(t1.name int);
create table t2(test.t2.name int);
drop table t1,t2;
serg@serg.mylan's avatar
serg@serg.mylan committed
500

501 502 503 504
#
# Bug #12537: UNION produces longtext instead of varchar
#
CREATE TABLE t1 (f1 VARCHAR(255) CHARACTER SET utf8);
505
CREATE TABLE t2 AS SELECT LEFT(f1,171) AS f2 FROM t1 UNION SELECT LEFT(f1,171) AS f2 FROM t1;
506 507 508
DESC t2;
DROP TABLE t1,t2;

andrey@lmy004's avatar
andrey@lmy004 committed
509 510 511 512 513 514 515
#
# Bug#12913 Simple SQL can crash server or connection
#
CREATE TABLE t12913 (f1 ENUM ('a','b')) AS SELECT 'a' AS f1;
SELECT * FROM t12913;
DROP TABLE t12913;

516 517 518 519 520 521
#
# Bug#11028: Crash on create table like
#
create database mysqltest;
use mysqltest;
drop database mysqltest;
522
--error ER_NO_DB_ERROR 
523 524 525 526
create table test.t1 like x;
--disable_warnings
drop table if exists test.t1;
--enable_warnings
527

528 529 530 531 532 533 534 535 536 537
#
# Bug #6859: Bogus error message on attempt to CREATE TABLE t LIKE view
#
create database mysqltest;
use mysqltest;
create view v1 as select 'foo' from dual;
--error 1347
create table t1 like v1;
drop view v1;
drop database mysqltest;
538 539 540 541 542 543 544 545 546 547 548 549
# Bug #6008 MySQL does not create warnings when
# creating database and using IF NOT EXISTS
#
create database mysqltest;
create database if not exists mysqltest character set latin2;
show create database mysqltest;
drop database mysqltest;
use test;
create table t1 (a int);
create table if not exists t1 (a int);
drop table t1;

550 551 552 553 554
# BUG#14139
create table t1 (
  a varchar(112) charset utf8 collate utf8_bin not null,
  primary key (a)
) select 'test' as a ;
555
#--warning 1364
556 557 558
show create table t1;
drop table t1;

559 560 561 562 563 564 565 566 567
#
# BUG#14480: assert failure in CREATE ... SELECT because of wrong
#            calculation of number of NULLs.
#
CREATE TABLE t2 (
  a int(11) default NULL
);
insert into t2 values(111);

568
#--warning 1364
569 570 571 572 573 574 575
create table t1 ( 
  a varchar(12) charset utf8 collate utf8_bin not null, 
  b int not null, primary key (a)
) select a, 1 as b from t2 ;
show create table t1;
drop table t1;

576
#--warning 1364
577 578 579 580 581 582 583
create table t1 ( 
  a varchar(12) charset utf8 collate utf8_bin not null, 
  b int not null, primary key (a)
) select a, 1 as c from t2 ;
show create table t1;
drop table t1;

584
#--warning 1364
585 586 587 588 589 590 591
create table t1 ( 
  a varchar(12) charset utf8 collate utf8_bin not null, 
  b int null, primary key (a)
) select a, 1 as c from t2 ;
show create table t1;
drop table t1;

592
#--warning 1364
593 594 595 596 597 598 599
create table t1 ( 
  a varchar(12) charset utf8 collate utf8_bin not null,
  b int not null, primary key (a)
) select 'a' as a , 1 as b from t2 ;
show create table t1;
drop table t1;

600
#--warning 1364
601 602 603 604 605 606 607 608 609 610 611 612 613
create table t1 ( 
  a varchar(12) charset utf8 collate utf8_bin,
  b int not null, primary key (a)
) select 'a' as a , 1 as b from t2 ;
show create table t1;
drop table t1, t2;

create table t1 ( 
  a1 int not null,
  a2 int, a3 int, a4 int, a5 int, a6 int, a7 int, a8 int, a9 int
);
insert into t1 values (1,1,1, 1,1,1, 1,1,1);

614
#--warning 1364
615 616 617 618 619 620 621
create table t2 ( 
  a1 varchar(12) charset utf8 collate utf8_bin not null,
  a2 int, a3 int, a4 int, a5 int, a6 int, a7 int, a8 int, a9 int,
  primary key (a1)
) select a1,a2,a3,a4,a5,a6,a7,a8,a9 from t1 ;
drop table t2;

622
#--warning 1364
623 624 625 626 627 628
create table t2 ( 
  a1 varchar(12) charset utf8 collate utf8_bin,
  a2 int, a3 int, a4 int, a5 int, a6 int, a7 int, a8 int, a9 int
) select a1,a2,a3,a4,a5,a6,a7,a8,a9 from t1;

drop table t1, t2;
629
#--warning 1364
630 631 632 633 634
create table t1 ( 
  a1 int, a2 int, a3 int, a4 int, a5 int, a6 int, a7 int, a8 int, a9 int
);
insert into t1 values (1,1,1, 1,1,1, 1,1,1);

635
#--warning 1364
636 637 638 639 640 641
create table t2 ( 
  a1 varchar(12) charset utf8 collate utf8_bin not null,
  a2 int, a3 int, a4 int, a5 int, a6 int, a7 int, a8 int, a9 int,
  primary key (a1)
) select a1,a2,a3,a4,a5,a6,a7,a8,a9 from t1 ;

642 643 644 645 646 647 648
# Test the default value
drop table t2;

create table t2 ( a int default 3, b int default 3)
  select a1,a2 from t1;
show create table t2;

649 650
drop table t1, t2;

651 652 653
#
# Bug #15316 SET value having comma not correctly handled
#
654
--error 1367
655 656
create table t1(a set("a,b","c,d") not null);

657
# End of 4.1 tests
658

659 660 661 662 663 664 665 666 667 668 669 670 671

#
# Bug #14155: Maximum value of MAX_ROWS handled incorrectly on 64-bit
# platforms
#
create table t1 (i int) engine=myisam max_rows=100000000000;
show create table t1;
alter table t1 max_rows=100;
show create table t1;
alter table t1 max_rows=100000000000;
show create table t1;
drop table t1;

672 673 674 675 676 677
#
# Bug#21772: can not name a column 'upgrade' when create a table
#
create table t1 (upgrade int);
drop table t1;

678
--echo End of 5.0 tests