~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/small_tmp_table.result

  • Committer: Brian Aker
  • Date: 2010-04-20 18:23:07 UTC
  • mto: This revision was merged to the branch mainline in revision 1502.
  • Revision ID: brian@gaz-20100420182307-jwyhun4vm2dtugyb
There is room for improvement around this. We should be using rows as well
in the future as a metric for disk/memory store. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
('AAAAAAAAAJ','AAAAAAAAAJ'), ('AAAAAAAAAK','AAAAAAAAAK');
12
12
set tmp_table_size=1024;
13
13
SELECT MAX(a) FROM t1 GROUP BY a,b;
 
14
ERROR HY000: Temporary table too large, rerun with SQL_BIG_RESULT.
 
15
SELECT SQL_BIG_RESULT MAX(a) FROM t1 GROUP BY a,b;
14
16
MAX(a)
15
17
AAAAAAAAAA
16
18
AAAAAAAAAB