Navigation Menu

Skip to content

Commit

Permalink
test: use lower case for type name and character set name
Browse files Browse the repository at this point in the history
Because they are not SQL keywords.
  • Loading branch information
kou committed Nov 17, 2012
1 parent dc9696e commit 6632ede
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
@@ -1,6 +1,6 @@
DROP TABLE IF EXISTS ids;
CREATE TABLE ids (
id CHAR(6) CHARACTER SET LATIN1 PRIMARY KEY
id char(6) CHARACTER SET latin1 PRIMARY KEY
);
INSERT INTO ids VALUES("abcdef");
INSERT INTO ids VALUES( "cdef");
Expand Down
Expand Up @@ -21,7 +21,7 @@ DROP TABLE IF EXISTS ids;
--enable_warnings

CREATE TABLE ids (
id CHAR(6) CHARACTER SET LATIN1 PRIMARY KEY
id char(6) CHARACTER SET latin1 PRIMARY KEY
);

INSERT INTO ids VALUES("abcdef");
Expand Down

0 comments on commit 6632ede

Please sign in to comment.