~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/subselect_notembedded.test

Merge of Jay

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#
2
 
# BUG#10308: purge log with subselect
3
 
# Bug#28553: mysqld crash in "purge master log before(select time from information_schema)"
4
 
#
5
 
--error 1064
6
 
purge master logs before (select adddate(current_timestamp(), interval -4 day));
7
 
purge master logs before adddate(current_timestamp(), interval -4 day);
8
 
 
9
 
#
10
2
# Bug31048: Many nested subqueries may cause server crash.
11
3
#
12
4
create table t1(a int,b int,key(a),key(b));