~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/subselect_innodb.result

  • Committer: Brian Aker
  • Date: 2008-10-02 19:18:43 UTC
  • mto: (438.4.1 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 435.
  • Revision ID: brian@tangent.org-20081002191843-tw3nnufik8qwf9rz
Removed UNSIGNED from parser.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
PRIMARY KEY (processor_id)
42
42
) ENGINE=InnoDB;
43
43
CREATE TABLE t3 (
44
 
yod_id BIGINT UNSIGNED AUTO_INCREMENT NOT NULL,
45
 
login_processor INTEGER UNSIGNED ,
 
44
yod_id BIGINT AUTO_INCREMENT NOT NULL,
 
45
login_processor INTEGER ,
46
46
PRIMARY KEY (yod_id)
47
47
) ENGINE=InnoDB;
48
48
CREATE TABLE t2 (
49
49
processor_id INTEGER NOT NULL,
50
 
yod_id BIGINT UNSIGNED NOT NULL,
 
50
yod_id BIGINT NOT NULL,
51
51
PRIMARY KEY (processor_id, yod_id),
52
52
INDEX (processor_id),
53
53
INDEX (yod_id),