[Groonga-mysql-commit] mroonga/mroonga [master] test: add a test for utf8_general_ci

Back to archive index

Kouhei Sutou null+****@clear*****
Mon Feb 11 16:52:34 JST 2013


Kouhei Sutou	2013-02-11 16:52:34 +0900 (Mon, 11 Feb 2013)

  New Revision: 4d183fbd370cd4784b5f49f8e6f003727deebc95
  https://github.com/mroonga/mroonga/commit/4d183fbd370cd4784b5f49f8e6f003727deebc95

  Log:
    test: add a test for utf8_general_ci

  Added files:
    test/sql/suite/mroonga/storage/collation/utf8_general_ci/r/french.result
    test/sql/suite/mroonga/storage/collation/utf8_general_ci/t/french.test

  Added: test/sql/suite/mroonga/storage/collation/utf8_general_ci/r/french.result (+11 -0) 100644
===================================================================
--- /dev/null
+++ test/sql/suite/mroonga/storage/collation/utf8_general_ci/r/french.result    2013-02-11 16:52:34 +0900 (880092f)
@@ -0,0 +1,11 @@
+DROP TABLE IF EXISTS diaries;
+SET NAMES utf8;
+CREATE TABLE diaries (
+content varchar(256) COLLATE utf8_general_ci,
+FULLTEXT INDEX (content)
+) DEFAULT CHARSET=utf8;
+INSERT INTO diaries VALUES ("Je suis un garçon.");
+SELECT * FROM diaries WHERE MATCH (content) AGAINST ("garcon");
+content
+Je suis un garçon.
+DROP TABLE diaries;

  Added: test/sql/suite/mroonga/storage/collation/utf8_general_ci/t/french.test (+35 -0) 100644
===================================================================
--- /dev/null
+++ test/sql/suite/mroonga/storage/collation/utf8_general_ci/t/french.test    2013-02-11 16:52:34 +0900 (bedd7f8)
@@ -0,0 +1,35 @@
+# 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/have_mroonga.inc
+
+--disable_warnings
+DROP TABLE IF EXISTS diaries;
+--enable_warnings
+
+SET NAMES utf8;
+CREATE TABLE diaries (
+  content varchar(256) COLLATE utf8_general_ci,
+  FULLTEXT INDEX (content)
+) DEFAULT CHARSET=utf8;
+
+INSERT INTO diaries VALUES ("Je suis un garçon.");
+
+SELECT * FROM diaries WHERE MATCH (content) AGAINST ("garcon");
+
+DROP TABLE diaries;
+
+--source include/have_mroonga_deinit.inc
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-mysql-commit mailing list
Back to archive index