mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
cleanup: remove Item::intro_version
and partition_info::set_show_version_string - they were already broken and impossible to maintain
This commit is contained in:
@ -62,9 +62,9 @@ byrange_tbl CREATE TABLE `byrange_tbl` (
|
||||
`filler` varchar(255) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=201 DEFAULT CHARSET=latin1
|
||||
/*!50100 PARTITION BY RANGE (id)
|
||||
PARTITION BY RANGE (id)
|
||||
(PARTITION pa100 VALUES LESS THAN (100) ENGINE = InnoDB,
|
||||
PARTITION paMax VALUES LESS THAN MAXVALUE ENGINE = InnoDB) */
|
||||
PARTITION paMax VALUES LESS THAN MAXVALUE ENGINE = InnoDB)
|
||||
show create table test.regular_tbl;
|
||||
Table Create Table
|
||||
regular_tbl CREATE TABLE `regular_tbl` (
|
||||
@ -106,9 +106,9 @@ byrange_tbl CREATE TABLE `byrange_tbl` (
|
||||
`filler` varchar(255) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=201 DEFAULT CHARSET=latin1
|
||||
/*!50100 PARTITION BY RANGE (id)
|
||||
PARTITION BY RANGE (id)
|
||||
(PARTITION pa100 VALUES LESS THAN (100) ENGINE = InnoDB,
|
||||
PARTITION paMax VALUES LESS THAN MAXVALUE ENGINE = InnoDB) */
|
||||
PARTITION paMax VALUES LESS THAN MAXVALUE ENGINE = InnoDB)
|
||||
show create table test.regular_tbl;
|
||||
Table Create Table
|
||||
regular_tbl CREATE TABLE `regular_tbl` (
|
||||
|
Reference in New Issue
Block a user