~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/group_by.result

  • 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:
342
342
3       134     ***
343
343
4       185     ****
344
344
drop table t1;
345
 
CREATE TABLE t1 (
 
345
CREATE TEMPORARY TABLE t1 (
346
346
pid int NOT NULL default '0',
347
347
c1id int default NULL,
348
348
c2id int default NULL,
351
351
UNIQUE KEY pid (pid,value)
352
352
) ENGINE=MyISAM;
353
353
INSERT INTO t1 VALUES (1, 1, NULL, 1),(1, 2, NULL, 2),(1, NULL, 3, 3),(1, 4, NULL, 4),(1, 5, NULL, 5);
354
 
CREATE TABLE t2 (
 
354
CREATE TEMPORARY TABLE t2 (
355
355
id int NOT NULL default '0',
356
356
active enum('Yes','No') NOT NULL default 'Yes',
357
357
PRIMARY KEY  (id)