summaryrefslogtreecommitdiff
path: root/storage/mroonga/mysql-test/mroonga/storage/r/select_empty_key_where_equal.result
blob: e0e3e21c620252b491d75df1d8fbfab38b1e076e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
DROP TABLE IF EXISTS tags;
CREATE TABLE tags (
name VARCHAR(16) NOT NULL,
KEY index_name (name)
);
INSERT INTO tags VALUES ('mroonga');
INSERT INTO tags VALUES ('mysql');
INSERT INTO tags VALUES ('');
SELECT * FROM tags WHERE name = "";
name

DROP TABLE tags;