Skip to content

Commit 909d362

Browse files
committed
After-merge fix of a result
In the merge eae968f, it turns out that I had accidentally initiated an in-source build in the past, and $MYSQL_TZINFO_TO_SQL was pointing to a stale copy of the executable in the source directory, instead of the correct one in the build directory.
1 parent eae968f commit 909d362

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

mysql-test/main/mysql_tzinfo_to_sql_symlink.result

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,15 @@ END IF|
8585
#
8686
# Testing with explicit timezonefile
8787
#
88+
\d |
89+
IF (select count(*) from information_schema.global_variables where
90+
variable_name='wsrep_on' and variable_value='ON') = 1 THEN
91+
ALTER TABLE time_zone ENGINE=InnoDB;
92+
ALTER TABLE time_zone_name ENGINE=InnoDB;
93+
ALTER TABLE time_zone_transition ENGINE=InnoDB;
94+
ALTER TABLE time_zone_transition_type ENGINE=InnoDB;
95+
END IF|
96+
\d ;
8897
INSERT INTO time_zone (Use_leap_seconds) VALUES ('N');
8998
SET @time_zone_id= LAST_INSERT_ID();
9099
INSERT INTO time_zone_name (Name, Time_zone_id) VALUES ('XXX', @time_zone_id);
@@ -106,6 +115,15 @@ END IF|
106115
\d |
107116
IF (select count(*) from information_schema.global_variables where
108117
variable_name='wsrep_on' and variable_value='ON') = 1 THEN
118+
ALTER TABLE time_zone ENGINE=InnoDB;
119+
ALTER TABLE time_zone_name ENGINE=InnoDB;
120+
ALTER TABLE time_zone_transition ENGINE=InnoDB;
121+
ALTER TABLE time_zone_transition_type ENGINE=InnoDB;
122+
END IF|
123+
\d ;
124+
\d |
125+
IF (select count(*) from information_schema.global_variables where
126+
variable_name='wsrep_on' and variable_value='ON') = 1 THEN
109127
ALTER TABLE time_zone_leap_second ENGINE=InnoDB;
110128
END IF|
111129
\d ;

0 commit comments

Comments
 (0)