diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2023-01-31 12:05:17 +0200 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2023-01-31 12:05:17 +0200 |
commit | 377f4ec755c81ba49c7d27e510ac5a2acd74c688 (patch) | |
tree | 62fc5164ed13a7c35260645de221c8f7e774f6a9 /mysql-test/suite/innodb/t/innodb.test | |
parent | 6252a281b5020d28685777c11ee27688a9db3d66 (diff) | |
download | mariadb-git-bb-11.0-MDEV-29985.tar.gz |
MDEV-29985 Remove the parameter innodb_file_per_tablebb-11.0-MDEV-29985
This follows up commit e581396b7aea94485580d2c9edaa9c5df647f2b7
(MDEV-29983), which deprecated the parameter.
Diffstat (limited to 'mysql-test/suite/innodb/t/innodb.test')
-rw-r--r-- | mysql-test/suite/innodb/t/innodb.test | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mysql-test/suite/innodb/t/innodb.test b/mysql-test/suite/innodb/t/innodb.test index 58e9899bd40..72ddc78614c 100644 --- a/mysql-test/suite/innodb/t/innodb.test +++ b/mysql-test/suite/innodb/t/innodb.test @@ -2429,7 +2429,11 @@ drop table t1; # I_S # create table t1 (id int) comment='this is a comment' engine=innodb; -select table_comment, data_free > 0 as data_free_is_set +# The newly created t1.ibd consists of only 4 pages +# (no extra pages after the clustered index root page 3). +# This test was applicable to tables that were created in the +# InnoDB system tablespace (innodb_file_per_table=0). +select table_comment, data_free from information_schema.tables where table_schema='test' and table_name = 't1'; drop table t1; |