~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/join.test

  • 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:
67
67
  count int DEFAULT '0' NOT NULL,
68
68
  qty int,
69
69
  phone char(1) DEFAULT '' NOT NULL,
70
 
  timestamp datetime,
 
70
  timestamp_arg datetime,
71
71
  PRIMARY KEY (id),
72
72
  KEY token (token(15)),
73
 
  KEY timestamp (timestamp),
 
73
  KEY timestamp_arg (timestamp_arg),
74
74
  UNIQUE token_2 (token(75),count,phone)
75
75
);
76
76