~ubuntu-branches/ubuntu/natty/drizzle/natty

« back to all changes in this revision

Viewing changes to tests/t/global_sort_join_constraints.test

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2011-02-02 13:42:46 UTC
  • mfrom: (1.2.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20110202134246-rj4qc6zafvdd7sq2
Tags: 2011.02.09-0ubuntu1
* New upstream release.
* Updated the -Werror patch.
* Updated copyright file.
* Removed get-orig-source target which didn't work right.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
#--exec $DRIZZLE_SLAP -q "SELECT * FROM t1 ORDER BY 1" -c100 --iterations=1 --number-of-queries=1000 --create-schema=test
10
10
 
11
11
# Test for join buffer constraint
12
 
--error 1703
 
12
--error ER_OUT_OF_GLOBAL_JOINMEMORY
13
13
select SQL_BIG_RESULT * from t1 join t2 on (t1.charcol1 = t2.charcol2) join t2 as t3 on (t1.charcol1 = t3.charcol2);