Skip to content

Commit a80c71d

Browse files
committed
Scripts: bootstrap fix [#307]
1 parent 70a4659 commit a80c71d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

mysql-test/suite/versioning/r/ddl.result

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ Table Create Table
179179
vtmd_template CREATE TABLE `vtmd_template` (
180180
`start` bigint(20) unsigned GENERATED ALWAYS AS ROW START COMMENT 'TRX_ID of table lifetime start',
181181
`end` bigint(20) unsigned GENERATED ALWAYS AS ROW END NOT NULL COMMENT 'TRX_ID of table lifetime end',
182-
`name` varchar(64) COLLATE utf8_bin NOT NULL COMMENT 'Table name during period [start, end)',
182+
`name` varchar(64) COLLATE utf8_bin NOT NULL COMMENT 'Table name during current lifetime period',
183183
`archive_name` varchar(64) COLLATE utf8_bin DEFAULT NULL COMMENT 'Name of archive table',
184184
`col_renames` blob DEFAULT NULL COMMENT 'Column name mappings from previous lifetime',
185185
PRIMARY KEY (`end`),

mysql-test/suite/versioning/r/vtmd.result

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Table Create Table
6666
t0_vtmd CREATE TABLE `t0_vtmd` (
6767
`start` bigint(20) unsigned GENERATED ALWAYS AS ROW START COMMENT 'TRX_ID of table lifetime start',
6868
`end` bigint(20) unsigned GENERATED ALWAYS AS ROW END NOT NULL COMMENT 'TRX_ID of table lifetime end',
69-
`name` varchar(64) COLLATE utf8_bin NOT NULL COMMENT 'Table name during period [start, end)',
69+
`name` varchar(64) COLLATE utf8_bin NOT NULL COMMENT 'Table name during current lifetime period',
7070
`archive_name` varchar(64) COLLATE utf8_bin DEFAULT NULL COMMENT 'Name of archive table',
7171
`col_renames` blob DEFAULT NULL COMMENT 'Column name mappings from previous lifetime',
7272
PRIMARY KEY (`end`),

scripts/mysql_system_tables.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ SET @create_innodb_index_stats="CREATE TABLE IF NOT EXISTS innodb_index_stats (
134134
SET @create_vtmd_template="CREATE OR REPLACE TABLE vtmd_template (
135135
start BIGINT UNSIGNED GENERATED ALWAYS AS ROW START COMMENT 'TRX_ID of table lifetime start',
136136
end BIGINT UNSIGNED GENERATED ALWAYS AS ROW END COMMENT 'TRX_ID of table lifetime end',
137-
name VARCHAR(64) NOT NULL COMMENT 'Table name during period [start, end)',
137+
name VARCHAR(64) NOT NULL COMMENT 'Table name during current lifetime period',
138138
archive_name VARCHAR(64) NULL COMMENT 'Name of archive table',
139139
col_renames BLOB COMMENT 'Column name mappings from previous lifetime',
140140
PERIOD FOR SYSTEM_TIME(start, end),

0 commit comments

Comments
 (0)