summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorDaniel Black <daniel@mariadb.org>2021-01-14 16:55:35 +1100
committerDaniel Black <daniel@mariadb.org>2021-03-30 12:30:33 +1100
commit85b6a8180599e4d868f43af8c5926f13a1d4dcaa (patch)
tree0117f49ce35897e5d85507c1fb789daed55a112d /cmake
parent4d870b591dc6b96c38687c6e732423b49ad8765b (diff)
downloadmariadb-git-85b6a8180599e4d868f43af8c5926f13a1d4dcaa.tar.gz
MDEV-24586: remove mysql_to_mariadb.sqlbb-10.2-MDEV-24586-danielblack-remove-mysql_to_mariadb.sql
This script is unused and unmaintained. The logic is implemented in scripts/mysql_system_tables_fix.sql that forms part of mysql_upgrade Its components: alter table mysql.user drop column `password_last_changed`, drop column `password_lifetime`, drop column `account_locked`; has a friendlier migration path coming MDEV-24122 alter table mysql.user change column `authentication_string` `auth_string` text COLLATE utf8_bin NOT NULL; Already part of scripts/mysql_system_tables_fix.sql alter table mysql.user add column `Password` char(41) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '' after `user`, add column `is_role` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N' after `auth_string`; alter table mysql.user add column `default_role` char(80) COLLATE utf8_bin NOT NULL DEFAULT '', add column `max_statement_time` decimal(12,6) NOT NULL DEFAULT '0.000000'; corrected in MDEV-23201 to be in the right order. update mysql.user set `password`=`auth_string`, plugin='' where plugin="mysql_native_password"; Is handled in server in the function acl_load.
Diffstat (limited to 'cmake')
0 files changed, 0 insertions, 0 deletions