Navigation Menu

Skip to content

Commit

Permalink
test: add a test for invalid normalizer is specified case
Browse files Browse the repository at this point in the history
fixes #1771

Reported by Y.Kentaro. Thanks!!!
  • Loading branch information
kou committed Jun 14, 2013
1 parent f373041 commit c245803
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
@@ -0,0 +1,12 @@
DROP TABLE IF EXISTS diaries;
SET NAMES latin1;
CREATE TABLE diaries (
day DATE PRIMARY KEY,
content VARCHAR(64) NOT NULL,
FULLTEXT INDEX (content) COMMENT 'normalizer "NormalizerMySQLGeneralCI"'
) DEFAULT CHARSET=latin1;
INSERT INTO diaries VALUES ("2013-04-23", "I drunk a black cookie.");
ERROR HY000: [tokenizer] failed to open normalized string
SELECT * FROM diaries;
day content
DROP TABLE diaries;
@@ -0,0 +1,40 @@
# Copyright(C) 2013 Kouhei Sutou <kou@clear-code.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
--source include/mroonga/load_mroonga_functions.inc

--disable_warnings
DROP TABLE IF EXISTS diaries;
--enable_warnings

SET NAMES latin1;

CREATE TABLE diaries (
day DATE PRIMARY KEY,
content VARCHAR(64) NOT NULL,
FULLTEXT INDEX (content) COMMENT 'normalizer "NormalizerMySQLGeneralCI"'
) DEFAULT CHARSET=latin1;

--error ER_ERROR_ON_WRITE
INSERT INTO diaries VALUES ("2013-04-23", "I drunk a black cookie.");

SELECT * FROM diaries;

DROP TABLE diaries;

--source include/mroonga/unload_mroonga_functions.inc
--source include/mroonga/have_mroonga_deinit.inc

0 comments on commit c245803

Please sign in to comment.