Dynamically set debug flag for session only

- avoid restart
- keep all in one file
- fix --check-testcase
This commit is contained in:
msvensson@shellback.(none) 2008-04-03 10:27:56 +02:00
parent 16d4936e3b
commit f1312d30bb
3 changed files with 7 additions and 2 deletions

View File

@ -13,6 +13,7 @@ INSERT INTO t1 VALUES
('AAAAAAAAAH','AAAAAAAAAH'), ('AAAAAAAAAI','AAAAAAAAAI'),
('AAAAAAAAAJ','AAAAAAAAAJ'), ('AAAAAAAAAK','AAAAAAAAAK');
set tmp_table_size=1024;
set session debug="d,raise_error";
SELECT MAX(a) FROM t1 GROUP BY a,b;
ERROR 23000: Can't write; duplicate key in table 'tmp_table'
set tmp_table_size=default;

View File

@ -1 +0,0 @@
--loose-debug=d,raise_error

View File

@ -21,10 +21,15 @@ INSERT INTO t1 VALUES
set tmp_table_size=1024;
# Set debug flag so an error is returned when
# tmp table in query is converted from heap to myisam
set session debug="d,raise_error";
--replace_regex /in table '[^']+'/in table 'tmp_table'/
--error ER_DUP_KEY
SELECT MAX(a) FROM t1 GROUP BY a,b;
set tmp_table_size=default;
DROP TABLE t1;