mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
A clean-up for the previous patch
This commit is contained in:
@ -5954,6 +5954,13 @@ SET @arg00=_binary 0xFF;
|
||||
EXECUTE stmt USING @arg00;
|
||||
ERROR HY000: Invalid utf8 character string: 'FF'
|
||||
DEALLOCATE PREPARE stmt;
|
||||
SET NAMES latin1;
|
||||
PREPARE stmt FROM "SELECT CONCAT(_utf8'a' COLLATE utf8_unicode_ci, ?)";
|
||||
EXECUTE stmt USING @no_such_var;
|
||||
CONCAT(_utf8'a' COLLATE utf8_unicode_ci, ?)
|
||||
NULL
|
||||
DEALLOCATE PREPARE stmt;
|
||||
SET NAMES utf8;
|
||||
#
|
||||
# End of 10.0 tests
|
||||
#
|
||||
|
@ -1675,6 +1675,11 @@ SET @arg00=_binary 0xFF;
|
||||
--error ER_INVALID_CHARACTER_STRING
|
||||
EXECUTE stmt USING @arg00;
|
||||
DEALLOCATE PREPARE stmt;
|
||||
SET NAMES latin1;
|
||||
PREPARE stmt FROM "SELECT CONCAT(_utf8'a' COLLATE utf8_unicode_ci, ?)";
|
||||
EXECUTE stmt USING @no_such_var;
|
||||
DEALLOCATE PREPARE stmt;
|
||||
SET NAMES utf8;
|
||||
|
||||
--echo #
|
||||
--echo # End of 10.0 tests
|
||||
|
Reference in New Issue
Block a user