Created
October 18, 2012 03:58
-
-
Save kou/3909792 to your computer and use it in GitHub Desktop.
mroonga BIGINT UNSIGNED test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mysql> CREATE TABLE ids (id BIGINT UNSIGNED) ENGINE=mroonga DEFAULT CHARSET=utf8; | |
mysql> INSERT INTO ids VALUES(1); | |
mysql> SELECT * FROM ids; | |
id | |
1 | |
mysql> DELETE FROM ids where id = 1; | |
mysql> SELECT * FROM ids; | |
id |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE ids ( | |
id BIGINT UNSIGNED | |
) ENGINE=mroonga DEFAULT CHARSET=utf8; | |
INSERT INTO ids VALUES(1); | |
SELECT * FROM ids; | |
DELETE FROM ids where id = 1; | |
SELECT * FROM ids; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment