~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/group_by.result

  • Committer: Brian Aker
  • Date: 2008-10-20 01:46:44 UTC
  • mto: (492.3.21 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 530.
  • Revision ID: brian@tangent.org-20081020014644-oqwhaf1lhch3yc4c
SQL_BIG_TABLES has been removed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
235
235
B       4
236
236
a       1
237
237
b       1
238
 
SET SQL_BIG_TABLES=1;
239
238
SELECT a FROM t1 GROUP BY a;
240
239
a
241
240
NULL
274
273
B       4
275
274
a       1
276
275
b       1
277
 
SET SQL_BIG_TABLES=0;
278
276
drop table t1;
279
277
CREATE TABLE t1 (
280
278
`a` char(193) default NULL,
388
386
NULL    9
389
387
        3
390
388
b       1
391
 
set option sql_big_tables=1;
392
389
select a,count(*) from t1 group by a;
393
390
a       count(*)
394
391
NULL    9
819
816
Positive
820
817
Positive
821
818
Positive
822
 
Warnings:
823
 
Error   1366    Incorrect decimal value: '' for column '' at row 4294967295
824
 
Error   1366    Incorrect decimal value: '' for column '' at row 4294967295
825
 
Error   1366    Incorrect decimal value: '' for column '' at row 4294967295
826
819
SELECT a + 1 FROM t1 GROUP BY a;
827
820
a + 1
828
821
2