~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/group_by.test

  • Committer: Brian Aker
  • Date: 2009-06-16 00:53:22 UTC
  • mto: This revision was merged to the branch mainline in revision 1094.
  • Revision ID: brian@gaz-20090616005322-w0ode4jul9z8s2y9
Partial fix for tests for tmp

Show diffs side-by-side

added added

removed removed

Lines of Context:
345
345
# Problem with MAX and LEFT JOIN
346
346
#
347
347
 
348
 
CREATE TABLE t1 (
 
348
CREATE TEMPORARY TABLE t1 (
349
349
  pid int NOT NULL default '0',
350
350
  c1id int default NULL,
351
351
  c2id int default NULL,
356
356
 
357
357
INSERT INTO t1 VALUES (1, 1, NULL, 1),(1, 2, NULL, 2),(1, NULL, 3, 3),(1, 4, NULL, 4),(1, 5, NULL, 5);
358
358
 
359
 
CREATE TABLE t2 (
 
359
CREATE TEMPORARY TABLE t2 (
360
360
  id int NOT NULL default '0',
361
361
  active enum('Yes','No') NOT NULL default 'Yes',
362
362
  PRIMARY KEY  (id)