~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/group_by.result

  • Committer: Brian Aker
  • Date: 2009-02-08 01:43:00 UTC
  • Revision ID: brian@tangent.org-20090208014300-gbidmdxbws95b223
More class creation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
lsg char(40),
9
9
date date
10
10
);
11
 
INSERT INTO t1 VALUES (1,1,1,'',NULL);
12
 
INSERT INTO t1 VALUES (2,2,2,'',NULL);
13
 
INSERT INTO t1 VALUES (2,1,1,'',NULL);
14
 
INSERT INTO t1 VALUES (3,3,3,'',NULL);
 
11
INSERT INTO t1 VALUES (1,1,1,'','0000-00-00');
 
12
INSERT INTO t1 VALUES (2,2,2,'','0000-00-00');
 
13
INSERT INTO t1 VALUES (2,1,1,'','0000-00-00');
 
14
INSERT INTO t1 VALUES (3,3,3,'','0000-00-00');
15
15
CREATE TABLE t2 (
16
16
userID int NOT NULL auto_increment,
17
17
niName char(15),
60
60
drop table t1,t2;
61
61
CREATE TABLE t1 (
62
62
PID int NOT NULL auto_increment,
63
 
payDate date,
64
 
recDate datetime,
 
63
payDate date DEFAULT '0000-00-00' NOT NULL,
 
64
recDate datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
65
65
URID int DEFAULT '0' NOT NULL,
66
66
CRID int DEFAULT '0' NOT NULL,
67
67
amount int DEFAULT '0' NOT NULL,