Skip to content

Commit 525db71

Browse files
committed
more 5.5.16 fixes
1 parent f1661bd commit 525db71

File tree

5 files changed

+18
-10
lines changed

5 files changed

+18
-10
lines changed

mysql-test/r/order_by_icp_mrr.result

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2550,6 +2550,13 @@ a 1
25502550
3 1
25512551
2 1
25522552
DROP TABLE t1;
2553+
#
2554+
# Bug#11765255 58201:
2555+
# VALGRIND/CRASH WHEN ORDERING BY MULTIPLE AGGREGATE FUNCTIONS
2556+
#
2557+
select 1 order by max(1) + min(1);
2558+
1
2559+
1
25532560
End of 5.1 tests
25542561
#
25552562
# Bug #38745: MySQL 5.1 optimizer uses filesort for ORDER BY

mysql-test/r/order_by_none.result

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2549,6 +2549,13 @@ a 1
25492549
3 1
25502550
2 1
25512551
DROP TABLE t1;
2552+
#
2553+
# Bug#11765255 58201:
2554+
# VALGRIND/CRASH WHEN ORDERING BY MULTIPLE AGGREGATE FUNCTIONS
2555+
#
2556+
select 1 order by max(1) + min(1);
2557+
1
2558+
1
25522559
End of 5.1 tests
25532560
#
25542561
# Bug #38745: MySQL 5.1 optimizer uses filesort for ORDER BY

mysql-test/r/plugin_auth.result

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -486,22 +486,17 @@ DROP USER bug12610784@localhost;
486486
#
487487
# Bug # 11766641: 59792: BIN/MYSQL -UUNKNOWN -PUNKNOWN
488488
# .-> USING PASSWORD: NO
489+
# Bug #12818542: PAM: ADDING PASSWORD FOR AN ACCOUNT DISABLES PAM
490+
# AUTHENTICATION SETTINGS
489491
#
490492
# shoud contain "using password=yes"
491493
ERROR 1045 (28000): Access denied for user 'unknown'@'localhost' (using password: YES)
492494
# shoud contain "using password=no"
493495
ERROR 1045 (28000): Access denied for user 'unknown'@'localhost' (using password: NO)
494-
#
495-
# Bug #12610784: SET PASSWORD INCORRECTLY KEEP AN OLD EMPTY PASSWORD
496-
#
497496
CREATE USER bug12610784@localhost;
498497
SET PASSWORD FOR bug12610784@localhost = PASSWORD('secret');
499498
ERROR 28000: Access denied for user 'bug12610784'@'localhost' (using password: NO)
500499
DROP USER bug12610784@localhost;
501-
#
502-
# Bug #12818542: PAM: ADDING PASSWORD FOR AN ACCOUNT DISABLES PAM
503-
# AUTHENTICATION SETTINGS
504-
#
505500
CREATE USER bug12818542@localhost
506501
IDENTIFIED WITH 'test_plugin_server' AS 'bug12818542_dest';
507502
CREATE USER bug12818542_dest@localhost

mysql-test/suite/sys_vars/r/all_vars.result

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,5 @@ INNODB_STATS_TRANSIENT_SAMPLE_PAGES
3131
INNODB_STATS_TRANSIENT_SAMPLE_PAGES
3232
INNODB_SYNC_ARRAY_SIZE
3333
INNODB_SYNC_ARRAY_SIZE
34-
INNODB_LARGE_PREFIX
35-
INNODB_LARGE_PREFIX
3634
drop table t1;
3735
drop table t2;

sql/binlog.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6104,6 +6104,7 @@ mysql_declare_plugin(binlog)
61046104
0x0100 /* 1.0 */,
61056105
NULL, /* status variables */
61066106
NULL, /* system variables */
6107-
NULL /* config options */
6107+
NULL, /* config options */
6108+
0,
61086109
}
61096110
mysql_declare_plugin_end;

0 commit comments

Comments
 (0)