mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
After-merge fix of a result
In the merge eae968f62d
, 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.
This commit is contained in:
@ -85,6 +85,15 @@ END IF|
|
|||||||
#
|
#
|
||||||
# Testing with explicit timezonefile
|
# Testing with explicit timezonefile
|
||||||
#
|
#
|
||||||
|
\d |
|
||||||
|
IF (select count(*) from information_schema.global_variables where
|
||||||
|
variable_name='wsrep_on' and variable_value='ON') = 1 THEN
|
||||||
|
ALTER TABLE time_zone ENGINE=InnoDB;
|
||||||
|
ALTER TABLE time_zone_name ENGINE=InnoDB;
|
||||||
|
ALTER TABLE time_zone_transition ENGINE=InnoDB;
|
||||||
|
ALTER TABLE time_zone_transition_type ENGINE=InnoDB;
|
||||||
|
END IF|
|
||||||
|
\d ;
|
||||||
INSERT INTO time_zone (Use_leap_seconds) VALUES ('N');
|
INSERT INTO time_zone (Use_leap_seconds) VALUES ('N');
|
||||||
SET @time_zone_id= LAST_INSERT_ID();
|
SET @time_zone_id= LAST_INSERT_ID();
|
||||||
INSERT INTO time_zone_name (Name, Time_zone_id) VALUES ('XXX', @time_zone_id);
|
INSERT INTO time_zone_name (Name, Time_zone_id) VALUES ('XXX', @time_zone_id);
|
||||||
@ -106,6 +115,15 @@ END IF|
|
|||||||
\d |
|
\d |
|
||||||
IF (select count(*) from information_schema.global_variables where
|
IF (select count(*) from information_schema.global_variables where
|
||||||
variable_name='wsrep_on' and variable_value='ON') = 1 THEN
|
variable_name='wsrep_on' and variable_value='ON') = 1 THEN
|
||||||
|
ALTER TABLE time_zone ENGINE=InnoDB;
|
||||||
|
ALTER TABLE time_zone_name ENGINE=InnoDB;
|
||||||
|
ALTER TABLE time_zone_transition ENGINE=InnoDB;
|
||||||
|
ALTER TABLE time_zone_transition_type ENGINE=InnoDB;
|
||||||
|
END IF|
|
||||||
|
\d ;
|
||||||
|
\d |
|
||||||
|
IF (select count(*) from information_schema.global_variables where
|
||||||
|
variable_name='wsrep_on' and variable_value='ON') = 1 THEN
|
||||||
ALTER TABLE time_zone_leap_second ENGINE=InnoDB;
|
ALTER TABLE time_zone_leap_second ENGINE=InnoDB;
|
||||||
END IF|
|
END IF|
|
||||||
\d ;
|
\d ;
|
||||||
|
Reference in New Issue
Block a user