Kenji Maruyama
null+****@clear*****
Thu Jan 16 14:50:43 JST 2014
Kenji Maruyama 2014-01-16 14:50:43 +0900 (Thu, 16 Jan 2014) New Revision: 005e0c675881aa740e834bcdea95499ae01e7456 https://github.com/mroonga/mroonga/commit/005e0c675881aa740e834bcdea95499ae01e7456 Message: test: add a test for select all where equal empty key refs #2214 [groonga-dev,02052] Reported by Naoya Murakami. Thanks!!! Added files: mysql-test/mroonga/storage/select/empty_key/r/where_equal.result mysql-test/mroonga/storage/select/empty_key/t/where_equal.test Added: mysql-test/mroonga/storage/select/empty_key/r/where_equal.result (+12 -0) 100644 =================================================================== --- /dev/null +++ mysql-test/mroonga/storage/select/empty_key/r/where_equal.result 2014-01-16 14:50:43 +0900 (e0e3e21) @@ -0,0 +1,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; Added: mysql-test/mroonga/storage/select/empty_key/t/where_equal.test (+36 -0) 100644 =================================================================== --- /dev/null +++ mysql-test/mroonga/storage/select/empty_key/t/where_equal.test 2014-01-16 14:50:43 +0900 (81d8fae) @@ -0,0 +1,36 @@ +# Copyright(C) 2014 Kenji Maruyama <mmmaru777 �� gmail.com> +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +--source ../../../../include/mroonga/have_mroonga.inc + +--disable_warnings +DROP TABLE IF EXISTS tags; +--enable_warnings + +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 = ""; + +DROP TABLE tags; + +--source ../../../../include/mroonga/have_mroonga_deinit.inc -------------- next part -------------- HTML����������������������������...Download