mirror of
https://github.com/MariaDB/server.git
synced 2026-05-14 19:07:15 +02:00
followup fixes for MySQL Bug #13889741: HANDLE_FATAL_SIGNAL IN _DB_ENTER_ | HANDLE_FATAL_SIGNAL IN STRNLEN
This commit is contained in:
parent
353130204d
commit
e679dfcafc
3 changed files with 27 additions and 4 deletions
|
|
@ -1675,4 +1675,8 @@ length(CAST(b AS CHAR))
|
|||
DROP TABLE ubig;
|
||||
select 1 from information_schema.tables where table_schema=repeat('a', 2000);
|
||||
1
|
||||
grant usage on *.* to mysqltest_1@localhost;
|
||||
select 1 from information_schema.tables where table_schema=repeat('a', 2000);
|
||||
1
|
||||
drop user mysqltest_1@localhost;
|
||||
End of 5.1 tests.
|
||||
|
|
|
|||
|
|
@ -1442,6 +1442,13 @@ DROP TABLE ubig;
|
|||
# Bug #13889741: HANDLE_FATAL_SIGNAL IN _DB_ENTER_ | HANDLE_FATAL_SIGNAL IN STRNLEN
|
||||
#
|
||||
select 1 from information_schema.tables where table_schema=repeat('a', 2000);
|
||||
grant usage on *.* to mysqltest_1@localhost;
|
||||
connect (con1, localhost, mysqltest_1,,);
|
||||
connection con1;
|
||||
select 1 from information_schema.tables where table_schema=repeat('a', 2000);
|
||||
connection default;
|
||||
disconnect con1;
|
||||
drop user mysqltest_1@localhost;
|
||||
|
||||
--echo End of 5.1 tests.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue