Merge lp:~hartmut-php/maria/bug1002404 into lp:~maria-captains/maria/trunk

Proposed by Hartmut Holzgraefe
Status: Needs review
Proposed branch: lp:~hartmut-php/maria/bug1002404
Merge into: lp:~maria-captains/maria/trunk
Diff against target: 20 lines (+11/-0)
1 file modified
scripts/mysql_system_tables_fix.sql (+11/-0)
To merge this branch: bzr merge lp:~hartmut-php/maria/bug1002404
Reviewer Review Type Date Requested Status
Maria-captains Pending
Review via email: mp+106785@code.launchpad.net

Description of the change

let mysql_upgrade take care of upper case host names (bug #1002402)

To post a comment you must log in.
Revision history for this message
Michael Widenius (monty) wrote :

Hi!

>>>>> "Hartmut" == Hartmut Holzgraefe <email address hidden> writes:

Hartmut> Hartmut Holzgraefe has proposed merging lp:~hartmut-php/maria/bug1002404 into lp:maria.
Hartmut> Requested reviews:
Hartmut> Maria-captains (maria-captains)
Hartmut> Related bugs:
Hartmut> Bug #1002404 in Maria: "DROP USER can't drop users with legacy upper case host name anymore"
Hartmut> https://bugs.launchpad.net/maria/+bug/1002404

Hartmut> For more details, see:
Hartmut> https://code.launchpad.net/~hartmut-php/maria/bug1002404/+merge/106785

Hartmut> let mysql_upgrade take care of upper case host names (bug #1002402)
Hartmut> --
Hartmut> https://code.launchpad.net/~hartmut-php/maria/bug1002404/+merge/106785
Hartmut> Your team Maria-captains is requested to review the proposed merge of lp:~hartmut-php/maria/bug1002404 into lp:maria.

Thanks, will apply this to MariaDB 5.3 tomorrow.

Regards,
Monty

Unmerged revisions

3368. By Hartmut Holzgraefe

let mysql_upgrade take care of legacy host name entries with upper case
letters in mysql.* privilege tables (launchpad bug #1002404)

3367. By Sergei Golubchik

tweak the test to pass, until the upstream bug#61209 is *completely* fixed
(see my comments starting from [9 Apr 22:18])

3366. By Sergei Golubchik

mysql 5.5.23 merge

3365. By Sergei Golubchik

merge

3364. By Sergei Golubchik

mdev-208 thread pool breaks the server on XP

3363. By Kristian Nielsen

lp:886550 Wrong installation path for some include files.

Now install all includes in a flat hierarchy under
$PREFIX/include/mysq/, same as 5.3. User can override with
-DINSTALL_INCLUDEDIR

3362. By Michael Widenius

Merge with 5.3

3361. By Michael Widenius

Define dummy my_init_stacktrace() to allow one to call it without #ifdef HAVE_STACKTRACE
Fixed compilation problem on windows.

3360. By Sergei Golubchik

merge

3359. By Michael Widenius

Merge of compatibility fixes
Fixed failing tests in sys_vars as we have now stricter checking of setting of variables.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'scripts/mysql_system_tables_fix.sql'
--- scripts/mysql_system_tables_fix.sql 2012-01-13 14:50:02 +0000
+++ scripts/mysql_system_tables_fix.sql 2012-05-22 11:36:21 +0000
@@ -228,6 +228,17 @@
228 MODIFY type enum ('function','aggregate') COLLATE utf8_general_ci NOT NULL;228 MODIFY type enum ('function','aggregate') COLLATE utf8_general_ci NOT NULL;
229229
230#230#
231# host name handling changed to "always lower case" in 5.1.53
232#
233UPDATE columns_priv SET Host = LOWER(Host);
234UPDATE db SET Host = LOWER(Host);
235UPDATE host SET Host = LOWER(Host);
236UPDATE procs_priv SET Host = LOWER(Host);
237UPDATE servers SET Host = LOWER(Host);
238UPDATE tables_priv SET Host = LOWER(Host);
239UPDATE user SET Host = LOWER(Host);
240
241#
231# Modify log tables.242# Modify log tables.
232#243#
233244

Subscribers

People subscribed via source and target branches