~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to mysql-test/t/ps.test

manual merge 6.0-main --> 6.0-bka-review

Show diffs side-by-side

added added

removed removed

Lines of Context:
2979
2979
deallocate prepare stmt;
2980
2980
drop table t1, t2;
2981
2981
 
 
2982
--echo #
 
2983
--echo # Bug#27430 Crash in subquery code when in PS and table DDL changed
 
2984
--echo # after PREPARE
 
2985
--echo #
 
2986
--echo # This part of the test doesn't work in embedded server, this is
 
2987
--echo # why it's here. For the main test see ps_ddl*.test
 
2988
--echo
 
2989
--disable_warnings
 
2990
drop table if exists t1;
 
2991
--enable_warnings
 
2992
create table t1 (a int);
 
2993
prepare stmt from "show events where (1) in (select * from t1)";
 
2994
execute stmt;
 
2995
drop table t1;
 
2996
create table t1 (x int);
 
2997
execute stmt;
 
2998
drop table t1;
 
2999
deallocate prepare stmt;
2982
3000
 
2983
3001
 
2984
3002
--echo End of 5.1 tests.