~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/ctype_utf8.test

  • 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:
621
621
# Bug #5832 SELECT doesn't return records in some cases
622
622
#
623
623
CREATE TABLE t1 (
624
 
    id       int unsigned NOT NULL auto_increment,
625
 
    list_id  int unsigned NOT NULL,
 
624
    id       int NOT NULL auto_increment,
 
625
    list_id  int NOT NULL,
626
626
    term     TEXT NOT NULL,
627
627
    PRIMARY KEY(id),
628
628
    INDEX(list_id, term(4))
643
643
#
644
644
SET NAMES latin1;
645
645
CREATE TABLE t1 (
646
 
    id int unsigned NOT NULL auto_increment,
647
 
    list_id int unsigned NOT NULL,
 
646
    id int NOT NULL auto_increment,
 
647
    list_id int NOT NULL,
648
648
    term text NOT NULL,
649
649
    PRIMARY KEY(id),
650
650
    INDEX(list_id, term(19))