Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: add a test for invalid normalizer is specified case
fixes #1771 Reported by Y.Kentaro. Thanks!!!
- Loading branch information
Showing
2 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
...ite/mroonga/storage/create/table/normalizer/r/no_utf8_charset_with_utf8_normalizer.result
This file contains 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -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; |
40 changes: 40 additions & 0 deletions
40
...suite/mroonga/storage/create/table/normalizer/t/no_utf8_charset_with_utf8_normalizer.test
This file contains 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -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 |