~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/group_by.result

  • Committer: Brian Aker
  • Date: 2009-07-12 00:49:18 UTC
  • mfrom: (1063.9.51 brian-tmp-fix)
  • Revision ID: brian@gaz-20090712004918-chprmyj387ex6l8a
Merge Stewart

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)