mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
7769e5a677
(fixed bug #2526 "--init-file crashes MySQL if contains large select") Such checking usually works in send_ok, send_eof, but in this case large result causes interim flushing.
12 lines
No EOL
230 B
Text
12 lines
No EOL
230 B
Text
#
|
|
# This test is first part of test init_file_part2.test (bug #2526)
|
|
#
|
|
|
|
#DROP TABLE IF EXISTS t1;
|
|
|
|
#CREATE TABLE t1
|
|
#(
|
|
# i int(11) default NULL
|
|
#) TYPE=MyISAM;
|
|
|
|
#INSERT INTO t1 VALUES (1),(2),(3),(4),(5),(6),(7),(8),(9),(10); |