Commit c3d51823 authored by thek@adventure.(none)'s avatar thek@adventure.(none)

Corrected result-file merge error.

parent c87a6342
...@@ -1218,6 +1218,12 @@ DROP USER mysqltest_1@localhost; ...@@ -1218,6 +1218,12 @@ DROP USER mysqltest_1@localhost;
DROP DATABASE db27878; DROP DATABASE db27878;
use test; use test;
DROP TABLE t1; 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; drop table if exists test;
Warnings: Warnings:
Note 1051 Unknown table 'test' Note 1051 Unknown table 'test'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment