~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/join.result

  • Committer: Lee Bieber
  • Date: 2011-01-08 03:39:25 UTC
  • mfrom: (2062.1.2 build)
  • Revision ID: kalebral@gmail.com-20110108033925-koobar399kwrm4ba
Merge Brian - parser clean up
Merge Marisa - latest doc updates, fix sphinx warnings

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
count int DEFAULT '0' NOT NULL,
75
75
qty int,
76
76
phone char(1) DEFAULT '' NOT NULL,
77
 
timestamp datetime,
 
77
timestamp_arg datetime,
78
78
PRIMARY KEY (id),
79
79
KEY token (token(15)),
80
 
KEY timestamp (timestamp),
 
80
KEY timestamp_arg (timestamp_arg),
81
81
UNIQUE token_2 (token(75),count,phone)
82
82
);
83
83
INSERT INTO t1 VALUES (21,'e45703b64de71482360de8fec94c3ade',3,7800,'n','1999-12-23 17:22:21');