File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
mysql-test/suite/versioning/r Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ Table Create Table
179
179
vtmd_template CREATE TABLE `vtmd_template` (
180
180
`start` bigint(20) unsigned GENERATED ALWAYS AS ROW START COMMENT 'TRX_ID of table lifetime start',
181
181
`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 ',
183
183
`archive_name` varchar(64) COLLATE utf8_bin DEFAULT NULL COMMENT 'Name of archive table',
184
184
`col_renames` blob DEFAULT NULL COMMENT 'Column name mappings from previous lifetime',
185
185
PRIMARY KEY (`end`),
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ Table Create Table
66
66
t0_vtmd CREATE TABLE `t0_vtmd` (
67
67
`start` bigint(20) unsigned GENERATED ALWAYS AS ROW START COMMENT 'TRX_ID of table lifetime start',
68
68
`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 ',
70
70
`archive_name` varchar(64) COLLATE utf8_bin DEFAULT NULL COMMENT 'Name of archive table',
71
71
`col_renames` blob DEFAULT NULL COMMENT 'Column name mappings from previous lifetime',
72
72
PRIMARY KEY (`end`),
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ SET @create_innodb_index_stats="CREATE TABLE IF NOT EXISTS innodb_index_stats (
134
134
SET @create_vtmd_template= " CREATE OR REPLACE TABLE vtmd_template (
135
135
start BIGINT UNSIGNED GENERATED ALWAYS AS ROW START COMMENT 'TRX_ID of table lifetime start',
136
136
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 ',
138
138
archive_name VARCHAR(64) NULL COMMENT 'Name of archive table',
139
139
col_renames BLOB COMMENT 'Column name mappings from previous lifetime',
140
140
PERIOD FOR SYSTEM_TIME(start, end),
You can’t perform that action at this time.
0 commit comments