mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Merge adventure.(none):/home/thek/Development/cpp/bug33275/my51-bug33275
into adventure.(none):/home/thek/Development/cpp/mysql-5.1-runtime sql/sql_acl.cc: Auto merged
This commit is contained in:
@ -1218,6 +1218,12 @@ DROP USER mysqltest_1@localhost;
|
||||
DROP DATABASE db27878;
|
||||
use test;
|
||||
DROP TABLE t1;
|
||||
#
|
||||
# Bug#33275 Server crash when creating temporary table mysql.user
|
||||
#
|
||||
CREATE TEMPORARY TABLE mysql.user (id INT);
|
||||
FLUSH PRIVILEGES;
|
||||
DROP TABLE mysql.user;
|
||||
drop table if exists test;
|
||||
Warnings:
|
||||
Note 1051 Unknown table 'test'
|
||||
|
@ -1266,6 +1266,12 @@ DROP DATABASE db27878;
|
||||
use test;
|
||||
DROP TABLE t1;
|
||||
|
||||
--echo #
|
||||
--echo # Bug#33275 Server crash when creating temporary table mysql.user
|
||||
--echo #
|
||||
CREATE TEMPORARY TABLE mysql.user (id INT);
|
||||
FLUSH PRIVILEGES;
|
||||
DROP TABLE mysql.user;
|
||||
#
|
||||
# Bug #33201 Crash occurs when granting update privilege on one column of a view
|
||||
#
|
||||
|
Reference in New Issue
Block a user