1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
|
# Test for InnoDB memcached support for utf8 charset
# To make sure it handles utf8 as same as MYSQL.
source include/not_valgrind.inc;
source include/have_memcached_plugin.inc;
source include/not_windows.inc;
--disable_query_log
CALL mtr.add_suppression("daemon-memcached-w-batch-size': unsigned");
CALL mtr.add_suppression("Could not obtain server's UPN to be used as target service name");
CALL mtr.add_suppression("Warning: MySQL is trying to drop");
--enable_query_log
--enable_connect_log
SET @transaction_isolation= @@global.transaction_isolation;
SET GLOBAL TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
# Create the memcached tables
--disable_query_log
source include/memcache_config.inc;
--enable_query_log
INSERT INTO cache_policies VALUES("cache_policy", "innodb_only",
"innodb_only", "innodb_only", "innodb_only");
INSERT INTO config_options VALUES("separator", "|");
# describe table for memcache
INSERT INTO containers VALUES ("desc_t1", "test", "t1",
"c1", "c2,c21,c22,c23,c24,c25", "c3", "c4", "c5", "PRIMARY");
USE test;
--disable_warnings
DROP TABLE IF EXISTS t1;
--enable_warnings
CREATE TABLE t1 (c1 VARCHAR(32),
c2 VARCHAR(40),
c21 VARCHAR(40),
c22 VARCHAR(40),
c23 VARCHAR(40),
c24 VARCHAR(40),
c25 VARCHAR(40),
c3 INT, c4 BIGINT UNSIGNED, c5 INT, primary key(c1))
ENGINE = INNODB DEFAULT CHARSET UTF8;
INSERT INTO t1 VALUES ('D', 'Darmstadt', 'City','1', 'dddddddddddddd', '1234', '2012', 0, 0, 0);
INSERT INTO t1 VALUES ('B', 'Berlin', 'Mitte', '2', 'bbbbbbbbbbbbbb', '2345', '2012', 0, 0, 0);
INSERT INTO t1 VALUES ('C', 'Cottbus', 'West', '3', 'cccccccccccccc', '3456', '2012', 0, 0 ,0);
INSERT INTO t1 VALUES ('M', 'München', 'Süd', '4', 'ÜÖÄßüöä', '4567', '2012', 0, 0, 0);
# Tables must exist before plugin can be started!
--let $memcached_address=127.0.0.1:11216
--source ../include/load_daemon_memcached_expecting_success.inc
SHOW CREATE TABLE t1;
--sorted_result
SELECT c1,c2,c21,c22,c23,c24,c25 FROM t1;
# Test get by key.
perl;
use DBI;
use Cache::Memcached;
my $memd = new Cache::Memcached {
'servers' => [ "127.0.0.1:11216" ],
'connect_timeout' => 20,
'select_timeout' =>20
};
print "Here are the memcached results with D,B,M,C:\n";
$val = $memd->get("D");
if ($val) { print "$val\n"; }
$val = $memd->get("B");
if ($val) { print "$val\n"; }
$val = $memd->get("M");
if ($val) { print "$val\n"; }
$val = $memd->get("C");
if ($val) { print "$val\n"; }
$memd->disconnect_all;
EOF
--sorted_result
SELECT c1,c2,c21,c22,c23,c24,c25 FROM t1;
# Test set/get by key.
# Here we test if the key is an invalid utf8 string,
# and if the key exceed the column length.
perl;
use DBI;
use Cache::Memcached;
my $memd = new Cache::Memcached {
'servers' => [ "127.0.0.1:11216" ],
'connect_timeout' => 20,
'select_timeout' =>20
};
# Test for normal utf8 key.
print "Here are the memcached results after set:\n";
$val = $memd->set("Ü","Ülzen|City|5|üöäßÜÖÄ|5678|2012");
$val = $memd->get("Ü");
if ($val) { print "$val\n"; }
# Test for invalid utf8 key.
# The key will be truncated from the invalid byte.
$key = "\x5f\xee\x39\x67\x6d";
$val = $memd->set($key,"Beijing|City|6|fffffffff|6789|2012");
$key2 = "\x5f";
$val = $memd->get($key2);
if ($val) { print "$val\n"; }
# Test key with all invalid bytes, which result the truncated length is 0
# It will be truncated to a empty string, and inserted into the table.
$key = "\xee\x5f\x39\x67\x6d";
$val = $memd->set($key,"Shanghai|City|7|fffffffff|7890|2012");
$key2 = "\xee\x5f\x39\x67\x6d";
$val = $memd->get($key2);
if ($val) { print "$val\n"; }
# Test key exceed the column length.
# It will be truncated to column length, and inserted into the table.
$val = $memd->set("0123456789012345678901234567890123456789","Wuhan|City|8|eeeeeeeee|8901|2012");
$val = $memd->get("01234567890123456789012345678901");
if ($val) { print "$val\n"; }
$memd->disconnect_all;
EOF
--sorted_result
SELECT c1,c2,c21,c22,c23,c24,c25 FROM t1;
DROP TABLE t1;
UNINSTALL PLUGIN daemon_memcached;
##############################################################################
# Dup test for CHAR(32) key.
##############################################################################
--disable_warnings
DROP TABLE IF EXISTS t1;
--enable_warnings
CREATE TABLE t1 (c1 CHAR(32),
c2 CHAR(40),
c21 CHAR(40),
c22 CHAR(40),
c23 CHAR(40),
c24 CHAR(40),
c25 CHAR(40),
c3 INT, c4 BIGINT UNSIGNED, c5 INT, primary key(c1))
ENGINE = INNODB DEFAULT CHARSET UTF8;
INSERT INTO t1 VALUES ('D', 'Darmstadt', 'City','1', 'dddddddddddddd', '1234', '2012', 0, 0, 0);
INSERT INTO t1 VALUES ('B', 'Berlin', 'Mitte', '2', 'bbbbbbbbbbbbbb', '2345', '2012', 0, 0, 0);
INSERT INTO t1 VALUES ('C', 'Cottbus', 'West', '3', 'cccccccccccccc', '3456', '2012', 0, 0 ,0);
INSERT INTO t1 VALUES ('M', 'München', 'Süd', '4', 'ÜÖÄßüöä', '4567', '2012', 0, 0, 0);
# Tables must exist before plugin can be started!
--let $memcached_address=127.0.0.1:11216
--source ../include/load_daemon_memcached_expecting_success.inc
SHOW CREATE TABLE t1;
--sorted_result
SELECT c1,c2,c21,c22,c23,c24,c25 FROM t1;
# Test get by key.
perl;
use DBI;
use Cache::Memcached;
my $memd = new Cache::Memcached {
'servers' => [ "127.0.0.1:11216" ],
'connect_timeout' => 20,
'select_timeout' =>20
};
print "Here are the memcached results with D,B,M,C:\n";
$val = $memd->get("D");
if ($val) { print "$val\n"; }
$val = $memd->get("B");
if ($val) { print "$val\n"; }
$val = $memd->get("M");
if ($val) { print "$val\n"; }
$val = $memd->get("C");
if ($val) { print "$val\n"; }
$memd->disconnect_all;
EOF
--sorted_result
SELECT c1,c2,c21,c22,c23,c24,c25 FROM t1;
# Test set/get by key.
# Here we test if the key is an invalid utf8 string,
# and if the key exceed the column length.
perl;
use DBI;
use Cache::Memcached;
my $memd = new Cache::Memcached {
'servers' => [ "127.0.0.1:11216" ],
'connect_timeout' => 20,
'select_timeout' =>20
};
# Test for normal utf8 key.
print "Here are the memcached results after set:\n";
$val = $memd->set("Ü","Ülzen|City|5|üöäßÜÖÄ|5678|2012");
$val = $memd->get("Ü");
if ($val) { print "$val\n"; }
# Test for invalid utf8 key.
# The key will be truncated from the invalid byte.
$key = "\x5f\xee\x39\x67\x6d";
$val = $memd->set($key,"Beijing|City|6|fffffffff|6789|2012");
$key2 = "\x5f";
$val = $memd->get($key2);
if ($val) { print "$val\n"; }
# Test key with all invalid bytes, which result the truncated length is 0
# It will be truncated to a empty string, and inserted into the table.
$key = "\xee\x5f\x39\x67\x6d";
$val = $memd->set($key,"Shanghai|City|7|fffffffff|7890|2012");
$key2 = "\xee\x5f\x39\x67\x6d";
$val = $memd->get($key2);
if ($val) { print "$val\n"; }
# Test key exceed the column length.
# It will be truncated to column length, and inserted into the table.
$val = $memd->set("0123456789012345678901234567890123456789","Wuhan|City|8|eeeeeeeee|8901|2012");
$val = $memd->get("01234567890123456789012345678901");
if ($val) { print "$val\n"; }
$memd->disconnect_all;
EOF
--sorted_result
SELECT c1,c2,c21,c22,c23,c24,c25 FROM t1;
DROP TABLE t1;
UNINSTALL PLUGIN daemon_memcached;
DROP DATABASE innodb_memcache;
SET @@global.transaction_isolation= @transaction_isolation;
|