1
- if (`select plugin_auth_version < "5.6.25" from information_schema.plugins where plugin_name='innodb'`)
2
- {
3
- --skip Not fixed in InnoDB as of 5.6.24 or earlier
4
- }
5
1
--source include/not_embedded.inc
6
2
--source include/have_partition.inc
7
3
--source include/have_innodb.inc
@@ -405,9 +401,7 @@ DROP TABLE t1;
405
401
# Bug #14673: Wrong InnoDB default row format
406
402
#
407
403
create table t1 (a int) engine=innodb partition by hash(a) ;
408
- # Data_free for InnoDB tablespace varies depending on which
409
- # tests have been run before this one
410
- --replace_column 10 # 12 #
404
+ --replace_column 12 #
411
405
show table status like 't1';
412
406
drop table t1;
413
407
@@ -417,33 +411,23 @@ drop table t1;
417
411
create table t1 (a int)
418
412
engine = innodb
419
413
partition by key (a);
420
- # Data_free for InnoDB tablespace varies depending on which
421
- # tests have been run before this one
422
- --replace_column 10 # 12 #
414
+ --replace_column 12 Create_time
423
415
show table status;
424
416
insert into t1 values (0), (1), (2), (3);
425
- # Data_free for InnoDB tablespace varies depending on which
426
- # tests have been run before this one
427
- --replace_column 10 # 12 #
417
+ --replace_column 12 Create_time 13 Update_time
428
418
show table status;
429
419
drop table t1;
430
420
431
421
create table t1 (a int auto_increment primary key)
432
422
engine = innodb
433
423
partition by key (a);
434
- # Data_free for InnoDB tablespace varies depending on which
435
- # tests have been run before this one
436
- --replace_column 10 # 12 #
424
+ --replace_column 12 Create_time
437
425
show table status;
438
426
insert into t1 values (NULL), (NULL), (NULL), (NULL);
439
- # Data_free for InnoDB tablespace varies depending on which
440
- # tests have been run before this one
441
- --replace_column 10 # 12 #
427
+ --replace_column 12 Create_time 13 Update_time
442
428
show table status;
443
429
insert into t1 values (NULL), (NULL), (NULL), (NULL);
444
- # Data_free for InnoDB tablespace varies depending on which
445
- # tests have been run before this one
446
- --replace_column 10 # 12 #
430
+ --replace_column 12 Create_time 13 Update_time
447
431
show table status;
448
432
drop table t1;
449
433
0 commit comments