~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/distinct.test

  • Committer: brian
  • Date: 2009-02-26 20:57:39 UTC
  • mfrom: (896.3.16 nofrm896)
  • mto: This revision was merged to the branch mainline in revision 901.
  • Revision ID: brian@bitters-20090226205739-yv4cbwna6myvkq22
Merge of Stewart + Jay's fix.

Show diffs side-by-side

added added

removed removed

Lines of Context:
469
469
#
470
470
# Bug #34928: Confusion by having Primary Key and Index
471
471
#
472
 
CREATE TABLE t1(a INT, b INT, c INT, d INT, e INT,
 
472
CREATE TABLE t1(a INT, b INT, c INT, d INT DEFAULT 0, e INT DEFAULT 0,
473
473
                PRIMARY KEY(a,b,c,d,e),
474
474
                KEY(a,b,d,c)
475
475
);