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 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420
|
#
# WL10778: Parser: output deprecation warnings on utf8 references, where
# utf8mb3 is an alias of utf8.
#
# Character set introducers.
SELECT _utf8'abc';
abc
abc
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
SELECT n'abc';
abc
abc
Warnings:
Warning 3720 NATIONAL/NCHAR/NVARCHAR implies the character set UTF8MB3, which will be replaced by UTF8MB4 in a future release. Please consider using CHAR(x) CHARACTER SET UTF8MB4 in order to be unambiguous.
# convert().
SELECT CONVERT ( 'abc' USING utf8 );
CONVERT ( 'abc' USING utf8 )
abc
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
SELECT CAST( 'abc' AS NATIONAL CHAR );
CAST( 'abc' AS NATIONAL CHAR )
abc
Warnings:
Warning 3720 NATIONAL/NCHAR/NVARCHAR implies the character set UTF8MB3, which will be replaced by UTF8MB4 in a future release. Please consider using CHAR(x) CHARACTER SET UTF8MB4 in order to be unambiguous.
SELECT CAST( 'abc' AS NCHAR );
CAST( 'abc' AS NCHAR )
abc
Warnings:
Warning 3720 NATIONAL/NCHAR/NVARCHAR implies the character set UTF8MB3, which will be replaced by UTF8MB4 in a future release. Please consider using CHAR(x) CHARACTER SET UTF8MB4 in order to be unambiguous.
# cast().
SELECT CAST('test' AS CHAR CHARACTER SET utf8);
CAST('test' AS CHAR CHARACTER SET utf8)
test
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
# Column definitions.
CREATE TABLE t1 ( a CHAR(1) ) CHARACTER SET utf8;
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
CREATE TABLE t2 ( a CHAR(1) ) CHARACTER SET "utf8";
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
CREATE TABLE t3 ( a CHAR(1) ) CHARACTER SET 'utf8';
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
CREATE TABLE t4 ( a CHAR(1) ) CHARACTER SET `utf8`;
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
CREATE TABLE t5 ( a NATIONAL CHAR(1) );
Warnings:
Warning 3720 NATIONAL/NCHAR/NVARCHAR implies the character set UTF8MB3, which will be replaced by UTF8MB4 in a future release. Please consider using CHAR(x) CHARACTER SET UTF8MB4 in order to be unambiguous.
CREATE TABLE t6 ( a NCHAR(1) );
Warnings:
Warning 3720 NATIONAL/NCHAR/NVARCHAR implies the character set UTF8MB3, which will be replaced by UTF8MB4 in a future release. Please consider using CHAR(x) CHARACTER SET UTF8MB4 in order to be unambiguous.
CREATE TABLE t7 ( a NCHAR );
Warnings:
Warning 3720 NATIONAL/NCHAR/NVARCHAR implies the character set UTF8MB3, which will be replaced by UTF8MB4 in a future release. Please consider using CHAR(x) CHARACTER SET UTF8MB4 in order to be unambiguous.
CREATE TABLE t8 ( a NVARCHAR(1) );
Warnings:
Warning 3720 NATIONAL/NCHAR/NVARCHAR implies the character set UTF8MB3, which will be replaced by UTF8MB4 in a future release. Please consider using CHAR(x) CHARACTER SET UTF8MB4 in order to be unambiguous.
DROP TABLE t1, t2, t3, t4, t5, t6, t7, t8;
# Function definitions.
CREATE FUNCTION f1 ( a CHAR(1) CHARACTER SET utf8 ) RETURNS INT RETURN 1;
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
CREATE FUNCTION f2 ( a CHAR(1) CHARACTER SET "utf8" ) RETURNS INT RETURN 1;
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
CREATE FUNCTION f3 ( a CHAR(1) CHARACTER SET 'utf8' ) RETURNS INT RETURN 1;
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
CREATE FUNCTION f4 ( a CHAR(1) CHARACTER SET `utf8` ) RETURNS INT RETURN 1;
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
CREATE FUNCTION f5 ( a NATIONAL CHAR(1) ) RETURNS INT RETURN 1;
Warnings:
Warning 3720 NATIONAL/NCHAR/NVARCHAR implies the character set UTF8MB3, which will be replaced by UTF8MB4 in a future release. Please consider using CHAR(x) CHARACTER SET UTF8MB4 in order to be unambiguous.
CREATE FUNCTION f6 ( a NCHAR(1) ) RETURNS INT RETURN 1;
Warnings:
Warning 3720 NATIONAL/NCHAR/NVARCHAR implies the character set UTF8MB3, which will be replaced by UTF8MB4 in a future release. Please consider using CHAR(x) CHARACTER SET UTF8MB4 in order to be unambiguous.
CREATE FUNCTION f7 ( a NCHAR ) RETURNS INT RETURN 1;
Warnings:
Warning 3720 NATIONAL/NCHAR/NVARCHAR implies the character set UTF8MB3, which will be replaced by UTF8MB4 in a future release. Please consider using CHAR(x) CHARACTER SET UTF8MB4 in order to be unambiguous.
CREATE FUNCTION f8 ( a NVARCHAR(1) ) RETURNS INT RETURN 1;
Warnings:
Warning 3720 NATIONAL/NCHAR/NVARCHAR implies the character set UTF8MB3, which will be replaced by UTF8MB4 in a future release. Please consider using CHAR(x) CHARACTER SET UTF8MB4 in order to be unambiguous.
DROP FUNCTION f1;
DROP FUNCTION f2;
DROP FUNCTION f3;
DROP FUNCTION f4;
DROP FUNCTION f5;
DROP FUNCTION f6;
DROP FUNCTION f7;
DROP FUNCTION f8;
# Columns clause in JSON table functions.
SELECT * FROM json_table('[]', '$[*]'
COLUMNS (p CHAR(1) CHARACTER SET utf8 PATH '$.a')) AS t;
p
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
SELECT * FROM json_table('[]', '$[*]'
COLUMNS (p CHAR(1) CHARACTER SET "utf8" PATH '$.a')) AS t;
p
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
SELECT * FROM json_table('[]', '$[*]'
COLUMNS (p CHAR(1) CHARACTER SET 'utf8' PATH '$.a')) AS t;
p
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
SELECT * FROM json_table('[]', '$[*]'
COLUMNS (p CHAR(1) CHARACTER SET `utf8` PATH '$.a')) AS t;
p
Warnings:
Warning 3719 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
SELECT * FROM json_table('[]', '$[*]'
COLUMNS (p NATIONAL CHAR(1) PATH '$.a')) AS t;
p
Warnings:
Warning 3720 NATIONAL/NCHAR/NVARCHAR implies the character set UTF8MB3, which will be replaced by UTF8MB4 in a future release. Please consider using CHAR(x) CHARACTER SET UTF8MB4 in order to be unambiguous.
SELECT * FROM json_table('[]', '$[*]' COLUMNS (p NCHAR(1) PATH '$.a')) AS t;
p
Warnings:
Warning 3720 NATIONAL/NCHAR/NVARCHAR implies the character set UTF8MB3, which will be replaced by UTF8MB4 in a future release. Please consider using CHAR(x) CHARACTER SET UTF8MB4 in order to be unambiguous.
SELECT * FROM json_table('[]', '$[*]' COLUMNS (p NCHAR PATH '$.a')) AS t;
p
Warnings:
Warning 3720 NATIONAL/NCHAR/NVARCHAR implies the character set UTF8MB3, which will be replaced by UTF8MB4 in a future release. Please consider using CHAR(x) CHARACTER SET UTF8MB4 in order to be unambiguous.
SELECT * FROM json_table('[]', '$[*]' COLUMNS (p NVARCHAR(1) PATH '$.a')) AS t;
p
Warnings:
Warning 3720 NATIONAL/NCHAR/NVARCHAR implies the character set UTF8MB3, which will be replaced by UTF8MB4 in a future release. Please consider using CHAR(x) CHARACTER SET UTF8MB4 in order to be unambiguous.
# Character set introducers.
SELECT HEX(_ucs2'abc');
HEX(_ucs2'abc')
00616263
Warnings:
Warning 1287 'ucs2' is deprecated and will be removed in a future release. Please use utf8mb4 instead
# convert().
SELECT CONVERT ( 'abc' USING ucs2 );
CONVERT ( 'abc' USING ucs2 )
abc
Warnings:
Warning 1287 'ucs2' is deprecated and will be removed in a future release. Please use utf8mb4 instead
# cast().
SELECT CAST('test' AS CHAR CHARACTER SET ucs2);
CAST('test' AS CHAR CHARACTER SET ucs2)
test
Warnings:
Warning 1287 'ucs2' is deprecated and will be removed in a future release. Please use utf8mb4 instead
# Column definitions.
CREATE TABLE t1 ( a CHAR(1) ) CHARACTER SET ucs2 COLLATE ucs2_persian_ci;
Warnings:
Warning 1287 'ucs2' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'ucs2_persian_ci' is a collation of the deprecated character set ucs2. Please consider using utf8mb4 with an appropriate collation instead.
CREATE TABLE t2 ( a CHAR(1) ) CHARACTER SET "ucs2" COLLATE ucs2_persian_ci;
Warnings:
Warning 1287 'ucs2' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'ucs2_persian_ci' is a collation of the deprecated character set ucs2. Please consider using utf8mb4 with an appropriate collation instead.
CREATE TABLE t3 ( a CHAR(1) ) CHARACTER SET 'ucs2' COLLATE ucs2_persian_ci;
Warnings:
Warning 1287 'ucs2' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'ucs2_persian_ci' is a collation of the deprecated character set ucs2. Please consider using utf8mb4 with an appropriate collation instead.
CREATE TABLE t4 ( a CHAR(1) ) CHARACTER SET `ucs2`COLLATE ucs2_persian_ci;
Warnings:
Warning 1287 'ucs2' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'ucs2_persian_ci' is a collation of the deprecated character set ucs2. Please consider using utf8mb4 with an appropriate collation instead.
DROP TABLE t1, t2, t3, t4;
# Function definitions.
CREATE FUNCTION f1 ( a CHAR(1) CHARACTER SET ucs2 COLLATE ucs2_persian_ci ) RETURNS INT RETURN 1;
Warnings:
Warning 1287 'ucs2' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'ucs2_persian_ci' is a collation of the deprecated character set ucs2. Please consider using utf8mb4 with an appropriate collation instead.
DROP FUNCTION f1;
# Columns clause in JSON table functions.
SELECT * FROM json_table('[]', '$[*]'
COLUMNS (p CHAR(1) CHARACTER SET ucs2 COLLATE ucs2_persian_ci PATH '$.a')) AS t;
p
Warnings:
Warning 1287 'ucs2' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'ucs2_persian_ci' is a collation of the deprecated character set ucs2. Please consider using utf8mb4 with an appropriate collation instead.
# restart: --character-set-server=ucs2 --collation-server=ucs2_persian_ci
Pattern "The character set ucs2 is deprecated and will be removed in a future release. Please consider using utf8mb4 instead." found
Pattern "is a collation of the deprecated character set ucs2. Please consider using utf8mb4 with an appropriate collation instead." found
# restart:
Deprecate macroman
# Character set introducers.
SELECT HEX(_macroman'abc');
HEX(_macroman'abc')
616263
Warnings:
Warning 1287 'macroman' is deprecated and will be removed in a future release. Please use utf8mb4 instead
# convert().
SELECT CONVERT ( 'abc' USING macroman );
CONVERT ( 'abc' USING macroman )
abc
Warnings:
Warning 1287 'macroman' is deprecated and will be removed in a future release. Please use utf8mb4 instead
# cast().
SELECT CAST('test' AS CHAR CHARACTER SET macroman);
CAST('test' AS CHAR CHARACTER SET macroman)
test
Warnings:
Warning 1287 'macroman' is deprecated and will be removed in a future release. Please use utf8mb4 instead
# Column definitions.
CREATE TABLE t1 ( a CHAR(1) ) CHARACTER SET macroman COLLATE macroman_general_ci;
Warnings:
Warning 1287 'macroman' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'macroman_general_ci' is a collation of the deprecated character set macroman. Please consider using utf8mb4 with an appropriate collation instead.
CREATE TABLE t2 ( a CHAR(1) ) CHARACTER SET "macroman" COLLATE macroman_general_ci;
Warnings:
Warning 1287 'macroman' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'macroman_general_ci' is a collation of the deprecated character set macroman. Please consider using utf8mb4 with an appropriate collation instead.
CREATE TABLE t3 ( a CHAR(1) ) CHARACTER SET 'macroman' COLLATE macroman_general_ci;
Warnings:
Warning 1287 'macroman' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'macroman_general_ci' is a collation of the deprecated character set macroman. Please consider using utf8mb4 with an appropriate collation instead.
CREATE TABLE t4 ( a CHAR(1) ) CHARACTER SET `macroman`COLLATE macroman_general_ci;
Warnings:
Warning 1287 'macroman' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'macroman_general_ci' is a collation of the deprecated character set macroman. Please consider using utf8mb4 with an appropriate collation instead.
DROP TABLE t1, t2, t3, t4;
# Function definitions.
CREATE FUNCTION f1 ( a CHAR(1) CHARACTER SET macroman COLLATE macroman_general_ci ) RETURNS INT RETURN 1;
Warnings:
Warning 1287 'macroman' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'macroman_general_ci' is a collation of the deprecated character set macroman. Please consider using utf8mb4 with an appropriate collation instead.
DROP FUNCTION f1;
# Columns clause in JSON table functions.
SELECT * FROM json_table('[]', '$[*]'
COLUMNS (p CHAR(1) CHARACTER SET macroman COLLATE macroman_general_ci PATH '$.a')) AS t;
p
Warnings:
Warning 1287 'macroman' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'macroman_general_ci' is a collation of the deprecated character set macroman. Please consider using utf8mb4 with an appropriate collation instead.
# restart: --character-set-server=macroman --collation-server=macroman_general_ci
Pattern "The character set macroman is deprecated and will be removed in a future release. Please consider using utf8mb4 instead." found
Pattern "is a collation of the deprecated character set macroman. Please consider using utf8mb4 with an appropriate collation instead." found
# restart:
Deprecate macce
# Character set introducers.
SELECT HEX(_macce'abc');
HEX(_macce'abc')
616263
Warnings:
Warning 1287 'macce' is deprecated and will be removed in a future release. Please use utf8mb4 instead
# convert().
SELECT CONVERT ( 'abc' USING macce );
CONVERT ( 'abc' USING macce )
abc
Warnings:
Warning 1287 'macce' is deprecated and will be removed in a future release. Please use utf8mb4 instead
# cast().
SELECT CAST('test' AS CHAR CHARACTER SET macce);
CAST('test' AS CHAR CHARACTER SET macce)
test
Warnings:
Warning 1287 'macce' is deprecated and will be removed in a future release. Please use utf8mb4 instead
# Column definitions.
CREATE TABLE t1 ( a CHAR(1) ) CHARACTER SET macce COLLATE macce_general_ci;
Warnings:
Warning 1287 'macce' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'macce_general_ci' is a collation of the deprecated character set macce. Please consider using utf8mb4 with an appropriate collation instead.
CREATE TABLE t2 ( a CHAR(1) ) CHARACTER SET "macce" COLLATE macce_general_ci;
Warnings:
Warning 1287 'macce' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'macce_general_ci' is a collation of the deprecated character set macce. Please consider using utf8mb4 with an appropriate collation instead.
CREATE TABLE t3 ( a CHAR(1) ) CHARACTER SET 'macce' COLLATE macce_general_ci;
Warnings:
Warning 1287 'macce' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'macce_general_ci' is a collation of the deprecated character set macce. Please consider using utf8mb4 with an appropriate collation instead.
CREATE TABLE t4 ( a CHAR(1) ) CHARACTER SET `macce`COLLATE macce_general_ci;
Warnings:
Warning 1287 'macce' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'macce_general_ci' is a collation of the deprecated character set macce. Please consider using utf8mb4 with an appropriate collation instead.
DROP TABLE t1, t2, t3, t4;
# Function definitions.
CREATE FUNCTION f1 ( a CHAR(1) CHARACTER SET macce COLLATE macce_general_ci ) RETURNS INT RETURN 1;
Warnings:
Warning 1287 'macce' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'macce_general_ci' is a collation of the deprecated character set macce. Please consider using utf8mb4 with an appropriate collation instead.
DROP FUNCTION f1;
# Columns clause in JSON table functions.
SELECT * FROM json_table('[]', '$[*]'
COLUMNS (p CHAR(1) CHARACTER SET macce COLLATE macce_general_ci PATH '$.a')) AS t;
p
Warnings:
Warning 1287 'macce' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'macce_general_ci' is a collation of the deprecated character set macce. Please consider using utf8mb4 with an appropriate collation instead.
Use of old aliases
SET SESSION character_set_results=mac_latin2;
Warnings:
Warning 1287 'macroman' is deprecated and will be removed in a future release. Please use utf8mb4 instead
SELECT @@character_set_results;
@@character_set_results
macroman
SET SESSION character_set_results=macce_latin2;
Warnings:
Warning 1287 'macce' is deprecated and will be removed in a future release. Please use utf8mb4 instead
SELECT @@character_set_results;
@@character_set_results
macce
SET SESSION character_set_results=default;
SELECT @@character_set_results;
@@character_set_results
utf8mb4
# restart: --character-set-server=macce --collation-server=macce_general_ci
Pattern "The character set macce is deprecated and will be removed in a future release. Please consider using utf8mb4 instead." found
Pattern "is a collation of the deprecated character set macce. Please consider using utf8mb4 with an appropriate collation instead." found
# restart:
Deprecate dec8
# Character set introducers.
SELECT HEX(_dec8'abc');
HEX(_dec8'abc')
616263
Warnings:
Warning 1287 'dec8' is deprecated and will be removed in a future release. Please use utf8mb4 instead
# convert().
SELECT CONVERT ( 'abc' USING dec8 );
CONVERT ( 'abc' USING dec8 )
abc
Warnings:
Warning 1287 'dec8' is deprecated and will be removed in a future release. Please use utf8mb4 instead
# cast().
SELECT CAST('test' AS CHAR CHARACTER SET dec8);
CAST('test' AS CHAR CHARACTER SET dec8)
test
Warnings:
Warning 1287 'dec8' is deprecated and will be removed in a future release. Please use utf8mb4 instead
# Column definitions.
CREATE TABLE t1 ( a CHAR(1) ) CHARACTER SET dec8 COLLATE dec8_swedish_ci;
Warnings:
Warning 1287 'dec8' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'dec8_swedish_ci' is a collation of the deprecated character set dec8. Please consider using utf8mb4 with an appropriate collation instead.
CREATE TABLE t2 ( a CHAR(1) ) CHARACTER SET "dec8" COLLATE dec8_swedish_ci;
Warnings:
Warning 1287 'dec8' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'dec8_swedish_ci' is a collation of the deprecated character set dec8. Please consider using utf8mb4 with an appropriate collation instead.
CREATE TABLE t3 ( a CHAR(1) ) CHARACTER SET 'dec8' COLLATE dec8_swedish_ci;
Warnings:
Warning 1287 'dec8' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'dec8_swedish_ci' is a collation of the deprecated character set dec8. Please consider using utf8mb4 with an appropriate collation instead.
CREATE TABLE t4 ( a CHAR(1) ) CHARACTER SET `dec8` COLLATE dec8_swedish_ci;
Warnings:
Warning 1287 'dec8' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'dec8_swedish_ci' is a collation of the deprecated character set dec8. Please consider using utf8mb4 with an appropriate collation instead.
DROP TABLE t1, t2, t3, t4;
# Function definitions.
CREATE FUNCTION f1 ( a CHAR(1) CHARACTER SET dec8 COLLATE dec8_swedish_ci ) RETURNS INT RETURN 1;
Warnings:
Warning 1287 'dec8' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'dec8_swedish_ci' is a collation of the deprecated character set dec8. Please consider using utf8mb4 with an appropriate collation instead.
DROP FUNCTION f1;
# Columns clause in JSON table functions.
SELECT * FROM json_table('[]', '$[*]'
COLUMNS (p CHAR(1) CHARACTER SET dec8 COLLATE dec8_swedish_ci PATH '$.a')) AS t;
p
Warnings:
Warning 1287 'dec8' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'dec8_swedish_ci' is a collation of the deprecated character set dec8. Please consider using utf8mb4 with an appropriate collation instead.
# restart: --character-set-server=dec8 --collation-server=dec8_swedish_ci
Pattern "The character set dec8 is deprecated and will be removed in a future release. Please consider using utf8mb4 instead." found
Pattern "'dec8_swedish_ci' is a collation of the deprecated character set dec8. Please consider using utf8mb4 with an appropriate collation instead." found
# restart:
Deprecate hp8
# Character set introducers.
SELECT HEX(_hp8'abc');
HEX(_hp8'abc')
616263
Warnings:
Warning 1287 'hp8' is deprecated and will be removed in a future release. Please use utf8mb4 instead
# convert().
SELECT CONVERT ( 'abc' USING hp8 );
CONVERT ( 'abc' USING hp8 )
abc
Warnings:
Warning 1287 'hp8' is deprecated and will be removed in a future release. Please use utf8mb4 instead
# cast().
SELECT CAST('test' AS CHAR CHARACTER SET hp8);
CAST('test' AS CHAR CHARACTER SET hp8)
test
Warnings:
Warning 1287 'hp8' is deprecated and will be removed in a future release. Please use utf8mb4 instead
# Column definitions.
CREATE TABLE t1 ( a CHAR(1) ) CHARACTER SET hp8 COLLATE hp8_english_ci;
Warnings:
Warning 1287 'hp8' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'hp8_english_ci' is a collation of the deprecated character set hp8. Please consider using utf8mb4 with an appropriate collation instead.
CREATE TABLE t2 ( a CHAR(1) ) CHARACTER SET "hp8" COLLATE hp8_english_ci;
Warnings:
Warning 1287 'hp8' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'hp8_english_ci' is a collation of the deprecated character set hp8. Please consider using utf8mb4 with an appropriate collation instead.
CREATE TABLE t3 ( a CHAR(1) ) CHARACTER SET 'hp8' COLLATE hp8_english_ci;
Warnings:
Warning 1287 'hp8' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'hp8_english_ci' is a collation of the deprecated character set hp8. Please consider using utf8mb4 with an appropriate collation instead.
CREATE TABLE t4 ( a CHAR(1) ) CHARACTER SET `hp8` COLLATE hp8_english_ci;
Warnings:
Warning 1287 'hp8' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'hp8_english_ci' is a collation of the deprecated character set hp8. Please consider using utf8mb4 with an appropriate collation instead.
DROP TABLE t1, t2, t3, t4;
# Function definitions.
CREATE FUNCTION f1 ( a CHAR(1) CHARACTER SET hp8 COLLATE hp8_english_ci ) RETURNS INT RETURN 1;
Warnings:
Warning 1287 'hp8' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'hp8_english_ci' is a collation of the deprecated character set hp8. Please consider using utf8mb4 with an appropriate collation instead.
DROP FUNCTION f1;
# Columns clause in JSON table functions.
SELECT * FROM json_table('[]', '$[*]'
COLUMNS (p CHAR(1) CHARACTER SET hp8 COLLATE hp8_english_ci PATH '$.a')) AS t;
p
Warnings:
Warning 1287 'hp8' is deprecated and will be removed in a future release. Please use utf8mb4 instead
Warning 4079 'hp8_english_ci' is a collation of the deprecated character set hp8. Please consider using utf8mb4 with an appropriate collation instead.
# restart: --character-set-server=hp8 --collation-server=hp8_english_ci
Pattern "The character set hp8 is deprecated and will be removed in a future release. Please consider using utf8mb4 instead." found
Pattern "'hp8_english_ci' is a collation of the deprecated character set hp8. Please consider using utf8mb4 with an appropriate collation instead." found
# restart:
|