~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Monty Taylor
  • Date: 2008-07-05 17:09:05 UTC
  • mto: This revision was merged to the branch mainline in revision 63.
  • Revision ID: monty@inaugust.com-20080705170905-itvcfiincapslw9w
Removed redundant declaration.

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
#
2
10
# Bug31048: Many nested subqueries may cause server crash.
3
11
#
4
12
create table t1(a int,b int,key(a),key(b));