summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/jp/t/jp_reverse_utf8.test
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 18:07:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 18:07:14 +0000
commita175314c3e5827eb193872241446f2f8f5c9d33c (patch)
treecd3d60ca99ae00829c52a6ca79150a5b6e62528b /mysql-test/suite/jp/t/jp_reverse_utf8.test
parentInitial commit. (diff)
downloadmariadb-10.5-upstream.tar.xz
mariadb-10.5-upstream.zip
Adding upstream version 1:10.5.12.upstream/1%10.5.12upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'mysql-test/suite/jp/t/jp_reverse_utf8.test')
-rw-r--r--mysql-test/suite/jp/t/jp_reverse_utf8.test65
1 files changed, 65 insertions, 0 deletions
diff --git a/mysql-test/suite/jp/t/jp_reverse_utf8.test b/mysql-test/suite/jp/t/jp_reverse_utf8.test
new file mode 100644
index 00000000..ce49b571
--- /dev/null
+++ b/mysql-test/suite/jp/t/jp_reverse_utf8.test
@@ -0,0 +1,65 @@
+--source include/have_utf8.inc
+--source include/have_innodb.inc
+--disable_warnings
+drop table if exists `T1`;
+drop table if exists `T2`;
+drop table if exists `T3`;
+drop table if exists `T4`;
+drop table if exists `T5`;
+drop table if exists `T6`;
+drop table if exists `T7`;
+drop table if exists `T8`;
+drop table if exists `T9`;
+--enable_warnings
+
+#
+# Test REVERSE() function with Japanese characters in utf8 encoding
+#
+
+SET NAMES utf8;
+SET character_set_database = utf8;
+
+CREATE TABLE `T1` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = innodb;
+CREATE TABLE `T2` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = innodb;
+CREATE TABLE `T3` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = innodb;
+CREATE TABLE `T4` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = myisam;
+CREATE TABLE `T5` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = myisam;
+CREATE TABLE `T6` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = myisam;
+CREATE TABLE `T7` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = MEMORY;
+CREATE TABLE `T8` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = MEMORY;
+CREATE TABLE `T9` (`C1` char(5), INDEX(`C1`)) DEFAULT CHARSET = utf8 engine = MEMORY;
+
+INSERT INTO `T1` VALUES ('アイウエオ');
+INSERT INTO `T2` VALUES ('あいうえお');
+INSERT INTO `T3` VALUES ('龔龖龗龞龡');
+INSERT INTO `T4` VALUES ('アイウエオ');
+INSERT INTO `T5` VALUES ('あいうえお');
+INSERT INTO `T6` VALUES ('龔龖龗龞龡');
+INSERT INTO `T7` VALUES ('アイウエオ');
+INSERT INTO `T8` VALUES ('あいうえお');
+INSERT INTO `T9` VALUES ('龔龖龗龞龡');
+
+#InnoDB
+SELECT REVERSE(`C1`) FROM `T1`;
+SELECT REVERSE(`C1`) FROM `T2`;
+SELECT REVERSE(`C1`) FROM `T3`;
+
+#MyISAM
+SELECT REVERSE(`C1`) FROM `T4`;
+SELECT REVERSE(`C1`) FROM `T5`;
+SELECT REVERSE(`C1`) FROM `T6`;
+
+#MEMORY
+SELECT REVERSE(`C1`) FROM `T7`;
+SELECT REVERSE(`C1`) FROM `T8`;
+SELECT REVERSE(`C1`) FROM `T9`;
+
+DROP TABLE `T1`;
+DROP TABLE `T2`;
+DROP TABLE `T3`;
+DROP TABLE `T4`;
+DROP TABLE `T5`;
+DROP TABLE `T6`;
+DROP TABLE `T7`;
+DROP TABLE `T8`;
+DROP TABLE `T9`;