Merge branch '10.0' into 10.1

referenced_by_foreign_key2(), needed for InnoDB to compile,
was taken from 10.0-galera
This commit is contained in:
Sergei Golubchik 2015-09-03 12:58:41 +02:00
commit 530a6e7481
361 changed files with 9490 additions and 4591 deletions

1
.gitattributes vendored
View file

@ -15,6 +15,7 @@
*.dat -text -whitespace
storage/connect/mysql-test/connect/std_data/*.txt -text
pcre/testdata/greppatN4 -text
# Denote all files that are truly binary and should not be modified.
*.png binary

4
.gitignore vendored
View file

@ -277,6 +277,10 @@ storage/mroonga/mysql-test/mroonga/storage/r/variable_version.result
*.vcproj.*
*.vcproj.*.*
*.vcproj.*.*.*
*.vcxproj
*.vcxproj.*
*.vcxproj.*.*
*.vcxproj.*.*.*
# Build results
[Dd]ebug/

View file

@ -401,7 +401,6 @@ IF(WIN32)
ADD_SUBDIRECTORY(win/upgrade_wizard)
ADD_SUBDIRECTORY(win/packaging)
ENDIF()
ADD_SUBDIRECTORY(packaging/solaris)
INCLUDE(for_clients)

View file

@ -1109,7 +1109,7 @@ int main(int argc, char **argv)
printf("This installation of MySQL is already upgraded to %s, "
"use --force if you still need to run mysql_upgrade\n",
MYSQL_SERVER_VERSION);
die(NULL);
goto end;
}
if (opt_version_check && check_version_match())
@ -1138,6 +1138,7 @@ int main(int argc, char **argv)
DBUG_ASSERT(phase == phases_total);
end:
free_used_memory();
my_end(my_end_arg);
exit(0);

View file

@ -36,7 +36,7 @@
/* Global Thread counter */
uint counter;
uint counter= 0;
pthread_mutex_t counter_mutex;
pthread_cond_t count_threshhold;
@ -489,6 +489,11 @@ static void safe_exit(int error, MYSQL *mysql)
{
if (error && ignore_errors)
return;
/* in multi-threaded mode protect from concurrent safe_exit's */
if (counter)
pthread_mutex_lock(&counter_mutex);
if (mysql)
mysql_close(mysql);

View file

@ -1,5 +1,6 @@
/*
Copyright (c) 2005, 2012, Oracle and/or its affiliates.
Copyright (c) 2005, 2015, Oracle and/or its affiliates.
Copyright (c) 2010, 2015, MariaDB
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@ -242,7 +243,7 @@ void print_conclusions_csv(conclusions *con);
void generate_stats(conclusions *con, option_string *eng, stats *sptr);
uint parse_comma(const char *string, uint **range);
uint parse_delimiter(const char *script, statement **stmt, char delm);
uint parse_option(const char *origin, option_string **stmt, char delm);
int parse_option(const char *origin, option_string **stmt, char delm);
static int drop_schema(MYSQL *mysql, const char *db);
uint get_random_string(char *buf);
static statement *build_table_string(void);
@ -1264,7 +1265,13 @@ get_options(int *argc,char ***argv)
if (num_int_cols_opt)
{
option_string *str;
parse_option(num_int_cols_opt, &str, ',');
if(parse_option(num_int_cols_opt, &str, ',') == -1)
{
fprintf(stderr, "Invalid value specified for the option "
"'number-int-cols'\n");
option_cleanup(str);
return 1;
}
num_int_cols= atoi(str->string);
if (str->option)
num_int_cols_index= atoi(str->option);
@ -1275,7 +1282,13 @@ get_options(int *argc,char ***argv)
if (num_char_cols_opt)
{
option_string *str;
parse_option(num_char_cols_opt, &str, ',');
if(parse_option(num_char_cols_opt, &str, ',') == -1)
{
fprintf(stderr, "Invalid value specified for the option "
"'number-char-cols'\n");
option_cleanup(str);
return 1;
}
num_char_cols= atoi(str->string);
if (str->option)
num_char_cols_index= atoi(str->option);
@ -1512,7 +1525,13 @@ get_options(int *argc,char ***argv)
printf("Parsing engines to use.\n");
if (default_engine)
parse_option(default_engine, &engine_options, ',');
{
if(parse_option(default_engine, &engine_options, ',') == -1)
{
fprintf(stderr, "Invalid value specified for the option 'engine'\n");
return 1;
}
}
if (tty_password)
opt_password= get_tty_password(NullS);
@ -1989,7 +2008,7 @@ end:
DBUG_RETURN(0);
}
uint
int
parse_option(const char *origin, option_string **stmt, char delm)
{
char *retstr;
@ -2014,6 +2033,13 @@ parse_option(const char *origin, option_string **stmt, char delm)
char buffer[HUGE_STRING_LENGTH]= "";
char *buffer_ptr;
/*
Return an error if the length of the any of the comma seprated value
exceeds HUGE_STRING_LENGTH.
*/
if ((size_t)(retstr - ptr) > HUGE_STRING_LENGTH)
return -1;
count++;
strncpy(buffer, ptr, (size_t)(retstr - ptr));
/*
@ -2053,6 +2079,13 @@ parse_option(const char *origin, option_string **stmt, char delm)
{
char *origin_ptr;
/*
Return an error if the length of the any of the comma seprated value
exceeds HUGE_STRING_LENGTH.
*/
if (strlen(ptr) > HUGE_STRING_LENGTH)
return -1;
if ((origin_ptr= strchr(ptr, ':')))
{
char *option_ptr;
@ -2063,13 +2096,13 @@ parse_option(const char *origin, option_string **stmt, char delm)
option_ptr= (char *)ptr + 1 + tmp->length;
/* Move past the : and the first string */
tmp->option_length= (size_t)((ptr + length) - option_ptr);
tmp->option_length= strlen(option_ptr);
tmp->option= my_strndup(option_ptr, tmp->option_length,
MYF(MY_FAE));
}
else
{
tmp->length= (size_t)((ptr + length) - ptr);
tmp->length= strlen(ptr);
tmp->string= my_strndup(ptr, tmp->length, MYF(MY_FAE));
}

View file

@ -1,2 +1,3 @@
[mysqld_safe]
skip_log_error
syslog

View file

@ -175,6 +175,7 @@ extern void set_malloc_size_cb(MALLOC_SIZE_CB func);
/* defines when allocating data */
extern void *my_malloc(size_t Size,myf MyFlags);
extern void *my_multi_malloc(myf MyFlags, ...);
extern void *my_multi_malloc_large(myf MyFlags, ...);
extern void *my_realloc(void *oldpoint, size_t Size, myf MyFlags);
extern void my_free(void *ptr);
extern void *my_memdup(const void *from,size_t length,myf MyFlags);

View file

@ -228,7 +228,7 @@ rollback;
create table t0 (n int);
insert t0 select * from t1;
set autocommit=1;
insert into t0 select GET_LOCK("lock1",null);
insert into t0 select GET_LOCK("lock1",0);
set autocommit=0;
create table t2 (n int) engine=innodb;
insert into t2 values (3);

View file

@ -2579,15 +2579,18 @@ sub setup_vardir() {
{
$plugindir="$opt_vardir/plugins";
mkpath($plugindir);
if (IS_WINDOWS && !$opt_embedded_server)
if (IS_WINDOWS)
{
for (<$bindir/storage/*$opt_vs_config/*.dll>,
<$bindir/plugin/*$opt_vs_config/*.dll>,
<$bindir/sql$opt_vs_config/*.dll>)
if (!$opt_embedded_server)
{
my $pname=basename($_);
copy rel2abs($_), "$plugindir/$pname";
set_plugin_var($pname);
for (<$bindir/storage/*$opt_vs_config/*.dll>,
<$bindir/plugin/*$opt_vs_config/*.dll>,
<$bindir/sql$opt_vs_config/*.dll>)
{
my $pname=basename($_);
copy rel2abs($_), "$plugindir/$pname";
set_plugin_var($pname);
}
}
}
else
@ -4430,6 +4433,7 @@ sub extract_warning_lines ($$) {
qr|InnoDB: Setting thread \d+ nice to \d+ failed, current nice \d+, errno 13|, # setpriority() fails under valgrind
qr|Failed to setup SSL|,
qr|SSL error: Failed to set ciphers to use|,
qr/Plugin 'InnoDB' will be forced to shutdown/,
);
my $matched_lines= [];

View file

@ -1782,8 +1782,8 @@ ALTER TABLE tm1 DROP INDEX im3;
affected rows: 2
info: Records: 2 Duplicates: 0 Warnings: 0
ALTER TABLE ti1 DROP COLUMN d2;
affected rows: 2
info: Records: 2 Duplicates: 0 Warnings: 0
affected rows: 0
info: Records: 0 Duplicates: 0 Warnings: 0
ALTER TABLE tm1 DROP COLUMN d2;
affected rows: 2
info: Records: 2 Duplicates: 0 Warnings: 0

View file

@ -5,7 +5,7 @@ Warning 1266 Using storage engine MyISAM for table 't1'
DROP TABLE t1;
INSTALL PLUGIN blackhole SONAME 'ha_blackhole.so';
INSTALL PLUGIN BLACKHOLE SONAME 'ha_blackhole.so';
ERROR HY000: Function 'BLACKHOLE' already exists
ERROR HY000: Plugin 'BLACKHOLE' already installed
UNINSTALL PLUGIN blackhole;
INSTALL PLUGIN blackhole SONAME 'ha_blackhole.so';
CREATE TABLE t1(a int) ENGINE=BLACKHOLE;

View file

@ -187,11 +187,11 @@ DROP ROLE r1;
CREATE ROLE IF NOT EXISTS r1;
CREATE ROLE IF NOT EXISTS r1;
Warnings:
Note 1974 Can't create role 'r1'; it already exists
Note 1975 Can't create role 'r1'; it already exists
DROP ROLE IF EXISTS r1;
DROP ROLE IF EXISTS r1;
Warnings:
Note 1975 Can't drop role 'r1'; it doesn't exist
Note 1976 Can't drop role 'r1'; it doesn't exist
SHOW BINLOG EVENTS;
Log_name Pos Event_type Server_id End_log_pos Info
# # Format_desc 1 # VER
@ -218,11 +218,11 @@ DROP USER u1@localhost;
CREATE USER IF NOT EXISTS u1@localhost;
CREATE USER IF NOT EXISTS u1@localhost;
Warnings:
Note 1972 Can't create user 'u1'@'localhost'; it already exists
Note 1973 Can't create user 'u1'@'localhost'; it already exists
DROP USER IF EXISTS u1@localhost;
DROP USER IF EXISTS u1@localhost;
Warnings:
Note 1973 Can't drop user 'u1'@'localhost'; it doesn't exist
Note 1974 Can't drop user 'u1'@'localhost'; it doesn't exist
SHOW BINLOG EVENTS;
Log_name Pos Event_type Server_id End_log_pos Info
# # Format_desc 1 # VER

View file

@ -20,7 +20,7 @@ Host User Role Admin_option
CREATE ROLE IF NOT EXISTS role1 WITH ADMIN user4;
Warnings:
Note 1449 The user specified as a definer ('user4'@'%') does not exist
Note 1974 Can't create role 'role1'; it already exists
Note 1975 Can't create role 'role1'; it already exists
SELECT * FROM mysql.roles_mapping WHERE Role='role1';
Host User Role Admin_option
% user3 role1 Y
@ -29,11 +29,11 @@ SELECT * FROM mysql.roles_mapping WHERE Role='role1';
Host User Role Admin_option
DROP ROLE IF EXISTS role1;
Warnings:
Note 1975 Can't drop role 'role1'; it doesn't exist
Note 1976 Can't drop role 'role1'; it doesn't exist
CREATE ROLE role_1;
CREATE ROLE IF NOT EXISTS role_1;
Warnings:
Note 1974 Can't create role 'role_1'; it already exists
Note 1975 Can't create role 'role_1'; it already exists
CREATE OR REPLACE ROLE role_1;
CREATE OR REPLACE ROLE IF NOT EXISTS role_1;
ERROR HY000: Incorrect usage of OR REPLACE and IF NOT EXISTS
@ -69,7 +69,7 @@ SET ROLE NONE;
DROP ROLE role_1;
DROP ROLE IF EXISTS role_1;
Warnings:
Note 1975 Can't drop role 'role_1'; it doesn't exist
Note 1976 Can't drop role 'role_1'; it doesn't exist
DROP ROLE role_1;
ERROR HY000: Operation DROP ROLE failed for 'role_1'
DROP USER u1@localhost;

View file

@ -4,7 +4,7 @@ password
*2B602296A79E0A8784ACC5C88D92E46588CCA3C3
CREATE USER IF NOT EXISTS u1@localhost IDENTIFIED BY 'pw2';
Warnings:
Note 1972 Can't create user 'u1'@'localhost'; it already exists
Note 1973 Can't create user 'u1'@'localhost'; it already exists
SELECT password FROM mysql.user WHERE user='u1';
password
*2B602296A79E0A8784ACC5C88D92E46588CCA3C3
@ -20,7 +20,7 @@ password
DROP USER IF EXISTS u1@localhost;
DROP USER IF EXISTS u1@localhost;
Warnings:
Note 1973 Can't drop user 'u1'@'localhost'; it doesn't exist
Note 1974 Can't drop user 'u1'@'localhost'; it doesn't exist
DROP USER u1@localhost;
ERROR HY000: Operation DROP USER failed for 'u1'@'localhost'
CREATE OR REPLACE USER u1@localhost;
@ -38,6 +38,6 @@ CREATE OR REPLACE USER u1 IDENTIFIED BY PASSWORD 'abcdefghijklmnop', u2;
DROP USER u1;
DROP USER IF EXISTS u1, u2;
Warnings:
Note 1973 Can't drop user 'u1'@'%'; it doesn't exist
Note 1974 Can't drop user 'u1'@'%'; it doesn't exist
DROP USER u2;
ERROR HY000: Operation DROP USER failed for 'u2'@'%'

View file

@ -512,7 +512,7 @@ select hex(convert(_big5 0xC84041 using ucs2));
hex(convert(_big5 0xC84041 using ucs2))
003F0041
Warnings:
Warning 1976 Cannot convert 'big5' character 0xC840 to 'ucs2'
Warning 1977 Cannot convert 'big5' character 0xC840 to 'ucs2'
End of 4.1 tests
set names big5;
create table t1 (a blob);
@ -789,70 +789,70 @@ A2C0 Ⅷ
A2C1 Ⅸ
A2C2
Warnings:
Warning 1976 Cannot convert 'big5' character 0xA3C0 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C0 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C1 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C1 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C2 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C2 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C3 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C3 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C4 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C4 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C5 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C5 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C6 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C6 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C7 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C7 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C8 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C8 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C9 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C9 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3CA to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3CA to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3CB to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3CB to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3CC to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3CC to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3CD to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3CD to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3CE to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3CE to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3CF to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3CF to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D0 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D0 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D1 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D1 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D2 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D2 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D3 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D3 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D4 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D4 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D5 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D5 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D6 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D6 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D7 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D7 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D8 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D8 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D9 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D9 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3DA to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3DA to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3DB to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3DB to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3DC to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3DC to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3DD to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3DD to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3DE to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3DE to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3DF to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3DF to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C0 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C0 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C1 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C1 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C2 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C2 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C3 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C3 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C4 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C4 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C5 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C5 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C6 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C6 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C7 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C7 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C8 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C8 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C9 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C9 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3CA to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3CA to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3CB to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3CB to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3CC to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3CC to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3CD to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3CD to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3CE to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3CE to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3CF to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3CF to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D0 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D0 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D1 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D1 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D2 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D2 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D3 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D3 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D4 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D4 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D5 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D5 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D6 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D6 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D7 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D7 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D8 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D8 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D9 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D9 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3DA to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3DA to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3DB to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3DB to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3DC to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3DC to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3DD to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3DD to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3DE to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3DE to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3DF to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3DF to 'utf8'
SELECT * FROM t1
WHERE HEX(CAST(UPPER(a) AS CHAR CHARACTER SET utf8)) <>
HEX(UPPER(CAST(a AS CHAR CHARACTER SET utf8))) ORDER BY code;
@ -868,70 +868,70 @@ C7D9 р
C7DA с
C7DB т
Warnings:
Warning 1976 Cannot convert 'big5' character 0xA3C0 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C0 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C1 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C1 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C2 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C2 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C3 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C3 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C4 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C4 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C5 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C5 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C6 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C6 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C7 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C7 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C8 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C8 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C9 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3C9 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3CA to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3CA to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3CB to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3CB to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3CC to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3CC to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3CD to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3CD to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3CE to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3CE to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3CF to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3CF to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D0 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D0 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D1 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D1 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D2 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D2 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D3 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D3 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D4 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D4 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D5 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D5 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D6 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D6 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D7 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D7 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D8 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D8 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D9 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3D9 to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3DA to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3DA to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3DB to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3DB to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3DC to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3DC to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3DD to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3DD to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3DE to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3DE to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3DF to 'utf8'
Warning 1976 Cannot convert 'big5' character 0xA3DF to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C0 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C0 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C1 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C1 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C2 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C2 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C3 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C3 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C4 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C4 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C5 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C5 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C6 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C6 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C7 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C7 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C8 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C8 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C9 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3C9 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3CA to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3CA to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3CB to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3CB to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3CC to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3CC to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3CD to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3CD to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3CE to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3CE to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3CF to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3CF to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D0 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D0 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D1 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D1 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D2 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D2 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D3 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D3 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D4 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D4 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D5 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D5 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D6 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D6 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D7 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D7 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D8 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D8 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D9 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3D9 to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3DA to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3DA to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3DB to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3DB to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3DC to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3DC to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3DD to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3DD to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3DE to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3DE to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3DF to 'utf8'
Warning 1977 Cannot convert 'big5' character 0xA3DF to 'utf8'
DROP TABLE t1;
#
# End of 5.5 tests

View file

@ -386,7 +386,7 @@ FD FD FD D18D FD
FE FE FE D18E FE
FF FF FF D18F FF
Warnings:
Warning 1976 Cannot convert 'cp1251' character 0x98 to 'utf8'
Warning 1977 Cannot convert 'cp1251' character 0x98 to 'utf8'
DROP TABLE t1;
set global LC_TIME_NAMES=convert((-8388608) using cp1251);
ERROR HY000: Unknown locale: '-8388608'

View file

@ -387,139 +387,139 @@ HEX(LOWER(CAST(a AS CHAR CHARACTER SET utf8))) ORDER BY code;
code a
81F0 Å
Warnings:
Warning 1976 Cannot convert 'cp932' character 0x81AD to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81AD to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81AE to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81AE to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81AF to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81AF to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B0 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B0 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B1 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B1 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B2 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B2 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B3 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B3 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B4 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B4 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B5 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B5 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B6 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B6 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B7 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B7 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C0 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C0 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C1 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C1 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C2 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C2 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C3 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C3 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C4 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C4 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C5 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C5 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C6 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C6 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C7 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C7 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81CF to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81CF to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D0 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D0 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D1 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D1 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D2 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D2 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D3 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D3 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D4 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D4 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D5 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D5 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D6 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D6 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D7 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D7 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D8 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D8 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D9 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D9 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81E9 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81E9 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81EA to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81EA to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81AD to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81AD to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81AE to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81AE to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81AF to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81AF to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B0 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B0 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B1 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B1 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B2 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B2 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B3 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B3 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B4 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B4 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B5 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B5 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B6 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B6 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B7 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B7 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C0 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C0 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C1 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C1 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C2 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C2 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C3 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C3 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C4 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C4 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C5 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C5 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C6 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C6 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C7 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C7 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81CF to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81CF to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D0 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D0 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D1 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D1 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D2 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D2 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D3 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D3 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D4 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D4 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D5 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D5 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D6 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D6 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D7 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D7 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D8 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D8 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D9 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D9 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81E9 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81E9 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81EA to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81EA to 'utf8'
SELECT * FROM t1
WHERE HEX(CAST(UPPER(a) AS CHAR CHARACTER SET utf8)) <>
HEX(UPPER(CAST(a AS CHAR CHARACTER SET utf8))) ORDER BY code;
code a
Warnings:
Warning 1976 Cannot convert 'cp932' character 0x81AD to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81AD to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81AE to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81AE to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81AF to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81AF to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B0 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B0 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B1 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B1 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B2 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B2 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B3 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B3 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B4 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B4 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B5 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B5 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B6 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B6 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B7 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B7 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C0 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C0 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C1 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C1 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C2 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C2 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C3 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C3 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C4 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C4 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C5 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C5 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C6 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C6 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C7 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C7 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81CF to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81CF to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D0 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D0 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D1 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D1 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D2 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D2 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D3 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D3 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D4 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D4 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D5 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D5 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D6 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D6 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D7 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D7 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D8 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D8 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D9 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D9 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81E9 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81E9 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81EA to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81EA to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81AD to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81AD to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81AE to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81AE to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81AF to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81AF to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B0 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B0 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B1 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B1 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B2 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B2 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B3 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B3 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B4 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B4 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B5 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B5 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B6 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B6 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B7 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B7 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C0 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C0 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C1 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C1 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C2 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C2 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C3 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C3 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C4 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C4 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C5 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C5 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C6 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C6 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C7 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C7 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81CF to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81CF to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D0 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D0 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D1 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D1 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D2 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D2 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D3 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D3 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D4 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D4 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D5 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D5 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D6 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D6 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D7 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D7 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D8 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D8 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D9 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D9 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81E9 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81E9 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81EA to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81EA to 'utf8'
#
# WL#3090 Japanese Character Set adjustments
# Test cp932->Unicode conversion
@ -10195,70 +10195,70 @@ FC49 EFA8AD
FC4A E9B899
FC4B E9BB91
Warnings:
Warning 1976 Cannot convert 'cp932' character 0x81AD to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81AE to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81AF to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B0 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B1 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B2 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B3 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B4 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B5 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B6 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81B7 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C0 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C1 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C2 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C3 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C4 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C5 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C6 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81C7 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81CF to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D0 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D1 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D2 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D3 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D4 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D5 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D6 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D7 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D8 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81D9 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81E9 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81EA to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81EB to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81EC to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81ED to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81EE to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81EF to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81F8 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81F9 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81FA to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x81FB to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x8240 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x8241 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x8242 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x8243 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x8244 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x8245 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x8246 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x8247 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x8248 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x8249 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x824A to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x824B to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x824C to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x824D to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x824E to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x8259 to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x825A to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x825B to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x825C to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x825D to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x825E to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x825F to 'utf8'
Warning 1976 Cannot convert 'cp932' character 0x827A to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81AD to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81AE to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81AF to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B0 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B1 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B2 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B3 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B4 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B5 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B6 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81B7 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C0 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C1 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C2 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C3 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C4 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C5 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C6 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81C7 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81CF to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D0 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D1 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D2 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D3 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D4 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D5 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D6 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D7 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D8 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81D9 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81E9 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81EA to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81EB to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81EC to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81ED to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81EE to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81EF to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81F8 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81F9 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81FA to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x81FB to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x8240 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x8241 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x8242 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x8243 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x8244 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x8245 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x8246 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x8247 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x8248 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x8249 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x824A to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x824B to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x824C to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x824D to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x824E to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x8259 to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x825A to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x825B to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x825C to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x825D to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x825E to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x825F to 'utf8'
Warning 1977 Cannot convert 'cp932' character 0x827A to 'utf8'
DROP TABLE t1;
#
# WL#3090 Japanese Character Set adjustments

View file

@ -10017,12 +10017,12 @@ select hex(convert(_eucjpms 0xA5FE41 using ucs2));
hex(convert(_eucjpms 0xA5FE41 using ucs2))
003F0041
Warnings:
Warning 1976 Cannot convert 'eucjpms' character 0xA5FE to 'ucs2'
Warning 1977 Cannot convert 'eucjpms' character 0xA5FE to 'ucs2'
select hex(convert(_eucjpms 0x8FABF841 using ucs2));
hex(convert(_eucjpms 0x8FABF841 using ucs2))
003F0041
Warnings:
Warning 1976 Cannot convert 'eucjpms' character 0x8FABF8 to 'ucs2'
Warning 1977 Cannot convert 'eucjpms' character 0x8FABF8 to 'ucs2'
set global LC_TIME_NAMES=convert((convert((0x63) using eucjpms)) using utf8);
ERROR HY000: Unknown locale: 'c'
#
@ -10589,70 +10589,70 @@ HEX(LOWER(CAST(a AS CHAR CHARACTER SET utf8))) ORDER BY code;
code a
8FAABC Ģ
Warnings:
Warning 1976 Cannot convert 'eucjpms' character 0xA2AF to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2AF to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B0 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B0 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B1 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B1 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B2 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B2 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B3 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B3 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B4 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B4 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B5 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B5 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B6 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B6 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B7 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B7 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B8 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B8 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B9 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B9 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C2 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C2 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C3 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C3 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C4 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C4 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C5 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C5 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C6 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C6 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C7 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C7 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C8 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C8 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C9 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C9 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D1 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D1 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D2 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D2 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D3 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D3 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D4 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D4 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D5 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D5 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D6 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D6 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D7 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D7 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D8 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D8 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D9 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D9 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2DA to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2DA to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2DB to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2DB to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2EB to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2EB to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2EC to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2EC to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2AF to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2AF to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B0 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B0 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B1 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B1 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B2 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B2 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B3 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B3 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B4 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B4 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B5 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B5 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B6 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B6 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B7 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B7 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B8 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B8 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B9 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B9 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C2 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C2 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C3 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C3 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C4 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C4 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C5 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C5 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C6 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C6 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C7 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C7 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C8 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C8 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C9 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C9 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D1 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D1 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D2 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D2 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D3 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D3 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D4 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D4 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D5 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D5 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D6 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D6 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D7 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D7 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D8 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D8 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D9 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D9 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2DA to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2DA to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2DB to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2DB to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2EB to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2EB to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2EC to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2EC to 'utf8'
SELECT * FROM t1
WHERE HEX(CAST(UPPER(a) AS CHAR CHARACTER SET utf8)) <>
HEX(UPPER(CAST(a AS CHAR CHARACTER SET utf8))) ORDER BY code;
@ -10660,70 +10660,70 @@ code a
8FA9C3 ð
8FABB9 ǵ
Warnings:
Warning 1976 Cannot convert 'eucjpms' character 0xA2AF to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2AF to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B0 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B0 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B1 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B1 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B2 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B2 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B3 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B3 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B4 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B4 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B5 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B5 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B6 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B6 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B7 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B7 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B8 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B8 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B9 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B9 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C2 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C2 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C3 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C3 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C4 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C4 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C5 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C5 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C6 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C6 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C7 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C7 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C8 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C8 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C9 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C9 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D1 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D1 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D2 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D2 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D3 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D3 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D4 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D4 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D5 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D5 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D6 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D6 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D7 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D7 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D8 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D8 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D9 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D9 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2DA to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2DA to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2DB to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2DB to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2EB to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2EB to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2EC to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2EC to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2AF to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2AF to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B0 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B0 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B1 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B1 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B2 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B2 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B3 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B3 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B4 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B4 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B5 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B5 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B6 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B6 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B7 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B7 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B8 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B8 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B9 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B9 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C2 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C2 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C3 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C3 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C4 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C4 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C5 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C5 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C6 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C6 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C7 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C7 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C8 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C8 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C9 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C9 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D1 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D1 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D2 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D2 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D3 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D3 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D4 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D4 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D5 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D5 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D6 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D6 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D7 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D7 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D8 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D8 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D9 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D9 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2DA to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2DA to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2DB to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2DB to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2EB to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2EB to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2EC to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2EC to 'utf8'
#
# WL#3090 Japanese Character Set adjustments
# Test sjis->Unicode conversion
@ -25810,70 +25810,70 @@ FEFC EE8EA9
FEFD EE8EAA
FEFE EE8EAB
Warnings:
Warning 1976 Cannot convert 'eucjpms' character 0xA2AF to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B0 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B1 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B2 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B3 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B4 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B5 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B6 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B7 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B8 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2B9 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C2 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C3 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C4 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C5 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C6 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C7 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C8 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2C9 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D1 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D2 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D3 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D4 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D5 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D6 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D7 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D8 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2D9 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2DA to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2DB to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2EB to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2EC to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2ED to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2EE to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2EF to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2F0 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2F1 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2FA to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2FB to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2FC to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA2FD to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA3A1 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA3A2 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA3A3 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA3A4 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA3A5 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA3A6 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA3A7 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA3A8 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA3A9 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA3AA to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA3AB to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA3AC to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA3AD to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA3AE to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA3AF to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA3BA to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA3BB to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA3BC to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA3BD to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA3BE to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA3BF to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA3C0 to 'utf8'
Warning 1976 Cannot convert 'eucjpms' character 0xA3DB to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2AF to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B0 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B1 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B2 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B3 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B4 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B5 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B6 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B7 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B8 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2B9 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C2 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C3 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C4 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C5 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C6 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C7 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C8 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2C9 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D1 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D2 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D3 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D4 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D5 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D6 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D7 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D8 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2D9 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2DA to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2DB to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2EB to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2EC to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2ED to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2EE to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2EF to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2F0 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2F1 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2FA to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2FB to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2FC to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA2FD to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA3A1 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA3A2 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA3A3 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA3A4 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA3A5 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA3A6 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA3A7 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA3A8 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA3A9 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA3AA to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA3AB to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA3AC to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA3AD to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA3AE to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA3AF to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA3BA to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA3BB to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA3BC to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA3BD to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA3BE to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA3BF to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA3C0 to 'utf8'
Warning 1977 Cannot convert 'eucjpms' character 0xA3DB to 'utf8'
DROP TABLE t1;
#
# WL#3090 Japanese Character Set adjustments

View file

@ -24737,70 +24737,70 @@ HEX(LOWER(CAST(a AS CHAR CHARACTER SET utf8))) ORDER BY code;
code a
A1CA Å
Warnings:
Warning 1976 Cannot convert 'euckr' character 0xA2E8 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2E8 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2E9 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2E9 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2EA to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2EA to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2EB to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2EB to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2EC to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2EC to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2ED to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2ED to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2EE to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2EE to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2EF to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2EF to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F0 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F0 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F1 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F1 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F2 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F2 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F3 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F3 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F4 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F4 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F5 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F5 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F6 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F6 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F7 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F7 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F8 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F8 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F9 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F9 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2FA to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2FA to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2FB to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2FB to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2FC to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2FC to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2FD to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2FD to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2FE to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2FE to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5AB to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5AB to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5AC to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5AC to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5AD to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5AD to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5AE to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5AE to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5AF to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5AF to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5BA to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5BA to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5BB to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5BB to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5BC to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5BC to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5BD to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5BD to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2E8 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2E8 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2E9 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2E9 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2EA to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2EA to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2EB to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2EB to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2EC to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2EC to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2ED to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2ED to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2EE to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2EE to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2EF to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2EF to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F0 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F0 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F1 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F1 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F2 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F2 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F3 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F3 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F4 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F4 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F5 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F5 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F6 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F6 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F7 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F7 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F8 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F8 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F9 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F9 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2FA to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2FA to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2FB to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2FB to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2FC to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2FC to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2FD to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2FD to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2FE to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2FE to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5AB to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5AB to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5AC to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5AC to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5AD to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5AD to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5AE to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5AE to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5AF to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5AF to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5BA to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5BA to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5BB to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5BB to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5BC to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5BC to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5BD to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5BD to 'utf8'
SELECT * FROM t1
WHERE HEX(CAST(UPPER(a) AS CHAR CHARACTER SET utf8)) <>
HEX(UPPER(CAST(a AS CHAR CHARACTER SET utf8))) ORDER BY code;
@ -24833,70 +24833,70 @@ A8E5 ⓨ
A8E6 ⓩ
A9A2 đ
Warnings:
Warning 1976 Cannot convert 'euckr' character 0xA2E8 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2E8 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2E9 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2E9 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2EA to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2EA to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2EB to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2EB to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2EC to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2EC to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2ED to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2ED to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2EE to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2EE to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2EF to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2EF to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F0 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F0 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F1 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F1 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F2 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F2 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F3 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F3 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F4 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F4 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F5 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F5 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F6 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F6 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F7 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F7 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F8 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F8 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F9 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2F9 to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2FA to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2FA to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2FB to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2FB to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2FC to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2FC to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2FD to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2FD to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2FE to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA2FE to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5AB to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5AB to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5AC to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5AC to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5AD to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5AD to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5AE to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5AE to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5AF to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5AF to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5BA to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5BA to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5BB to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5BB to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5BC to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5BC to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5BD to 'utf8'
Warning 1976 Cannot convert 'euckr' character 0xA5BD to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2E8 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2E8 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2E9 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2E9 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2EA to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2EA to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2EB to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2EB to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2EC to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2EC to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2ED to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2ED to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2EE to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2EE to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2EF to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2EF to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F0 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F0 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F1 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F1 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F2 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F2 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F3 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F3 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F4 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F4 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F5 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F5 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F6 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F6 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F7 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F7 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F8 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F8 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F9 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2F9 to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2FA to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2FA to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2FB to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2FB to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2FC to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2FC to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2FD to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2FD to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2FE to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA2FE to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5AB to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5AB to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5AC to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5AC to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5AD to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5AD to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5AE to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5AE to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5AF to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5AF to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5BA to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5BA to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5BB to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5BB to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5BC to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5BC to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5BD to 'utf8'
Warning 1977 Cannot convert 'euckr' character 0xA5BD to 'utf8'
DROP TABLE t1;
#
# End of 5.5 tests

View file

@ -765,70 +765,70 @@ A2FA
A2FB Ⅺ
A2FC Ⅻ
Warnings:
Warning 1976 Cannot convert 'gb2312' character 0xA2A1 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A1 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A2 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A2 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A3 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A3 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A4 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A4 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A5 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A5 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A6 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A6 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A7 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A7 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A8 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A8 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A9 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A9 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2AA to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2AA to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2AB to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2AB to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2AC to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2AC to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2AD to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2AD to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2AE to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2AE to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2AF to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2AF to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2B0 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2B0 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2E3 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2E3 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2E4 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2E4 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2EF to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2EF to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2F0 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2F0 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2FD to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2FD to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2FE to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2FE to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4F4 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4F4 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4F5 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4F5 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4F6 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4F6 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4F7 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4F7 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4F8 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4F8 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4F9 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4F9 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4FA to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4FA to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4FB to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4FB to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4FC to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4FC to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4FD to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4FD to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A1 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A1 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A2 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A2 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A3 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A3 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A4 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A4 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A5 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A5 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A6 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A6 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A7 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A7 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A8 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A8 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A9 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A9 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2AA to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2AA to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2AB to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2AB to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2AC to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2AC to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2AD to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2AD to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2AE to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2AE to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2AF to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2AF to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2B0 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2B0 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2E3 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2E3 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2E4 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2E4 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2EF to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2EF to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2F0 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2F0 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2FD to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2FD to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2FE to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2FE to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4F4 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4F4 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4F5 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4F5 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4F6 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4F6 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4F7 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4F7 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4F8 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4F8 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4F9 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4F9 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4FA to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4FA to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4FB to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4FB to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4FC to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4FC to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4FD to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4FD to 'utf8'
SELECT * FROM t1
WHERE HEX(CAST(UPPER(a) AS CHAR CHARACTER SET utf8)) <>
HEX(UPPER(CAST(a AS CHAR CHARACTER SET utf8))) ORDER BY code;
@ -860,70 +860,70 @@ A8B8 ǜ
A8B9 ü
A8BA ê
Warnings:
Warning 1976 Cannot convert 'gb2312' character 0xA2A1 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A1 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A2 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A2 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A3 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A3 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A4 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A4 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A5 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A5 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A6 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A6 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A7 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A7 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A8 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A8 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A9 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2A9 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2AA to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2AA to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2AB to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2AB to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2AC to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2AC to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2AD to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2AD to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2AE to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2AE to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2AF to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2AF to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2B0 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2B0 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2E3 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2E3 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2E4 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2E4 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2EF to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2EF to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2F0 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2F0 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2FD to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2FD to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2FE to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA2FE to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4F4 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4F4 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4F5 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4F5 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4F6 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4F6 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4F7 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4F7 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4F8 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4F8 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4F9 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4F9 to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4FA to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4FA to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4FB to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4FB to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4FC to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4FC to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4FD to 'utf8'
Warning 1976 Cannot convert 'gb2312' character 0xA4FD to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A1 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A1 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A2 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A2 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A3 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A3 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A4 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A4 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A5 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A5 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A6 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A6 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A7 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A7 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A8 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A8 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A9 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2A9 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2AA to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2AA to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2AB to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2AB to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2AC to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2AC to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2AD to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2AD to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2AE to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2AE to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2AF to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2AF to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2B0 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2B0 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2E3 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2E3 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2E4 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2E4 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2EF to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2EF to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2F0 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2F0 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2FD to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2FD to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2FE to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA2FE to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4F4 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4F4 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4F5 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4F5 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4F6 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4F6 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4F7 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4F7 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4F8 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4F8 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4F9 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4F9 to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4FA to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4FA to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4FB to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4FB to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4FC to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4FC to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4FD to 'utf8'
Warning 1977 Cannot convert 'gb2312' character 0xA4FD to 'utf8'
DROP TABLE t1;
#
# End of 5.5 tests

View file

@ -489,7 +489,7 @@ select hex(convert(_gbk 0xA14041 using ucs2));
hex(convert(_gbk 0xA14041 using ucs2))
003F0041
Warnings:
Warning 1976 Cannot convert 'gbk' character 0xA140 to 'ucs2'
Warning 1977 Cannot convert 'gbk' character 0xA140 to 'ucs2'
create table t1 (c1 text not null, c2 text not null) character set gbk;
alter table t1 change c1 c1 mediumtext character set gbk not null;
show create table t1;
@ -797,70 +797,70 @@ code a
A2FB Ⅺ
A2FC Ⅻ
Warnings:
Warning 1976 Cannot convert 'gbk' character 0xA140 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA140 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA141 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA141 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA142 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA142 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA143 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA143 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA144 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA144 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA145 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA145 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA146 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA146 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA147 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA147 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA148 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA148 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA149 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA149 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA14A to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA14A to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA14B to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA14B to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA14C to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA14C to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA14D to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA14D to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA14E to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA14E to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA14F to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA14F to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA150 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA150 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA151 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA151 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA152 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA152 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA153 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA153 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA154 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA154 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA155 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA155 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA156 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA156 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA157 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA157 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA158 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA158 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA159 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA159 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA15A to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA15A to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA15B to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA15B to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA15C to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA15C to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA15D to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA15D to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA15E to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA15E to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA15F to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA15F to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA140 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA140 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA141 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA141 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA142 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA142 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA143 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA143 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA144 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA144 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA145 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA145 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA146 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA146 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA147 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA147 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA148 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA148 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA149 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA149 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA14A to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA14A to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA14B to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA14B to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA14C to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA14C to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA14D to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA14D to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA14E to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA14E to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA14F to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA14F to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA150 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA150 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA151 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA151 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA152 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA152 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA153 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA153 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA154 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA154 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA155 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA155 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA156 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA156 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA157 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA157 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA158 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA158 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA159 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA159 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA15A to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA15A to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA15B to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA15B to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA15C to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA15C to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA15D to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA15D to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA15E to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA15E to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA15F to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA15F to 'utf8'
SELECT * FROM t1
WHERE HEX(CAST(UPPER(a) AS CHAR CHARACTER SET utf8)) <>
HEX(UPPER(CAST(a AS CHAR CHARACTER SET utf8))) ORDER BY code;
@ -894,70 +894,70 @@ A8BA ê
A8BD ń
A8BE ň
Warnings:
Warning 1976 Cannot convert 'gbk' character 0xA140 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA140 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA141 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA141 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA142 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA142 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA143 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA143 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA144 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA144 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA145 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA145 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA146 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA146 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA147 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA147 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA148 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA148 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA149 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA149 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA14A to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA14A to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA14B to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA14B to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA14C to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA14C to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA14D to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA14D to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA14E to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA14E to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA14F to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA14F to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA150 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA150 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA151 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA151 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA152 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA152 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA153 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA153 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA154 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA154 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA155 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA155 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA156 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA156 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA157 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA157 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA158 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA158 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA159 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA159 to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA15A to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA15A to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA15B to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA15B to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA15C to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA15C to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA15D to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA15D to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA15E to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA15E to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA15F to 'utf8'
Warning 1976 Cannot convert 'gbk' character 0xA15F to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA140 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA140 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA141 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA141 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA142 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA142 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA143 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA143 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA144 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA144 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA145 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA145 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA146 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA146 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA147 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA147 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA148 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA148 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA149 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA149 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA14A to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA14A to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA14B to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA14B to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA14C to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA14C to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA14D to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA14D to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA14E to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA14E to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA14F to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA14F to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA150 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA150 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA151 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA151 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA152 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA152 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA153 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA153 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA154 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA154 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA155 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA155 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA156 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA156 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA157 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA157 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA158 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA158 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA159 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA159 to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA15A to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA15A to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA15B to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA15B to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA15C to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA15C to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA15D to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA15D to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA15E to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA15E to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA15F to 'utf8'
Warning 1977 Cannot convert 'gbk' character 0xA15F to 'utf8'
DROP TABLE t1;
#
# End of 5.5 tests

View file

@ -686,139 +686,139 @@ HEX(LOWER(CAST(a AS CHAR CHARACTER SET utf8))) ORDER BY code;
code a
81F0 Å
Warnings:
Warning 1976 Cannot convert 'sjis' character 0x81AD to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81AD to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81AE to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81AE to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81AF to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81AF to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B0 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B0 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B1 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B1 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B2 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B2 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B3 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B3 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B4 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B4 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B5 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B5 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B6 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B6 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B7 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B7 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C0 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C0 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C1 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C1 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C2 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C2 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C3 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C3 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C4 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C4 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C5 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C5 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C6 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C6 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C7 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C7 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81CF to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81CF to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D0 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D0 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D1 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D1 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D2 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D2 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D3 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D3 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D4 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D4 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D5 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D5 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D6 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D6 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D7 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D7 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D8 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D8 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D9 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D9 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81E9 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81E9 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81EA to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81EA to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81AD to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81AD to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81AE to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81AE to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81AF to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81AF to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B0 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B0 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B1 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B1 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B2 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B2 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B3 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B3 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B4 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B4 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B5 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B5 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B6 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B6 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B7 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B7 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C0 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C0 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C1 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C1 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C2 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C2 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C3 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C3 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C4 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C4 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C5 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C5 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C6 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C6 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C7 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C7 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81CF to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81CF to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D0 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D0 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D1 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D1 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D2 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D2 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D3 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D3 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D4 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D4 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D5 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D5 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D6 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D6 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D7 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D7 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D8 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D8 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D9 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D9 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81E9 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81E9 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81EA to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81EA to 'utf8'
SELECT * FROM t1
WHERE HEX(CAST(UPPER(a) AS CHAR CHARACTER SET utf8)) <>
HEX(UPPER(CAST(a AS CHAR CHARACTER SET utf8))) ORDER BY code;
code a
Warnings:
Warning 1976 Cannot convert 'sjis' character 0x81AD to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81AD to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81AE to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81AE to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81AF to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81AF to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B0 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B0 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B1 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B1 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B2 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B2 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B3 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B3 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B4 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B4 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B5 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B5 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B6 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B6 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B7 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B7 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C0 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C0 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C1 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C1 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C2 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C2 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C3 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C3 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C4 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C4 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C5 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C5 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C6 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C6 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C7 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C7 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81CF to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81CF to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D0 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D0 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D1 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D1 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D2 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D2 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D3 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D3 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D4 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D4 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D5 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D5 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D6 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D6 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D7 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D7 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D8 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D8 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D9 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D9 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81E9 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81E9 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81EA to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81EA to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81AD to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81AD to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81AE to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81AE to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81AF to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81AF to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B0 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B0 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B1 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B1 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B2 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B2 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B3 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B3 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B4 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B4 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B5 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B5 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B6 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B6 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B7 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B7 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C0 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C0 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C1 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C1 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C2 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C2 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C3 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C3 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C4 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C4 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C5 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C5 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C6 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C6 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C7 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C7 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81CF to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81CF to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D0 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D0 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D1 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D1 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D2 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D2 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D3 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D3 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D4 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D4 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D5 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D5 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D6 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D6 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D7 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D7 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D8 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D8 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D9 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D9 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81E9 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81E9 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81EA to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81EA to 'utf8'
#
# WL#3090 Japanese Character Set adjustments
# Test sjis->Unicode conversion
@ -7769,70 +7769,70 @@ EAA2 E791A4
EAA3 E5879C
EAA4 E78699
Warnings:
Warning 1976 Cannot convert 'sjis' character 0x81AD to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81AE to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81AF to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B0 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B1 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B2 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B3 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B4 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B5 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B6 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81B7 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C0 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C1 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C2 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C3 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C4 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C5 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C6 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81C7 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81CF to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D0 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D1 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D2 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D3 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D4 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D5 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D6 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D7 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D8 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81D9 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81E9 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81EA to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81EB to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81EC to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81ED to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81EE to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81EF to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81F8 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81F9 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81FA to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x81FB to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x8240 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x8241 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x8242 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x8243 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x8244 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x8245 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x8246 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x8247 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x8248 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x8249 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x824A to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x824B to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x824C to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x824D to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x824E to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x8259 to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x825A to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x825B to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x825C to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x825D to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x825E to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x825F to 'utf8'
Warning 1976 Cannot convert 'sjis' character 0x827A to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81AD to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81AE to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81AF to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B0 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B1 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B2 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B3 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B4 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B5 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B6 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81B7 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C0 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C1 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C2 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C3 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C4 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C5 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C6 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81C7 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81CF to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D0 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D1 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D2 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D3 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D4 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D5 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D6 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D7 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D8 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81D9 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81E9 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81EA to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81EB to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81EC to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81ED to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81EE to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81EF to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81F8 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81F9 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81FA to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x81FB to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x8240 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x8241 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x8242 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x8243 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x8244 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x8245 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x8246 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x8247 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x8248 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x8249 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x824A to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x824B to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x824C to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x824D to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x824E to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x8259 to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x825A to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x825B to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x825C to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x825D to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x825E to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x825F to 'utf8'
Warning 1977 Cannot convert 'sjis' character 0x827A to 'utf8'
DROP TABLE t1;
#
# WL#3090 Japanese Character Set adjustments

View file

@ -2505,12 +2505,12 @@ select hex(convert(_ujis 0xA5FE41 using ucs2));
hex(convert(_ujis 0xA5FE41 using ucs2))
003F0041
Warnings:
Warning 1976 Cannot convert 'ujis' character 0xA5FE to 'ucs2'
Warning 1977 Cannot convert 'ujis' character 0xA5FE to 'ucs2'
select hex(convert(_ujis 0x8FABF841 using ucs2));
hex(convert(_ujis 0x8FABF841 using ucs2))
003F0041
Warnings:
Warning 1976 Cannot convert 'ujis' character 0x8FABF8 to 'ucs2'
Warning 1977 Cannot convert 'ujis' character 0x8FABF8 to 'ucs2'
DROP TABLE IF EXISTS t1, t2;
DROP PROCEDURE IF EXISTS sp1;
set names ujis;
@ -3081,70 +3081,70 @@ HEX(LOWER(CAST(a AS CHAR CHARACTER SET utf8))) ORDER BY code;
code a
8FAABC Ģ
Warnings:
Warning 1976 Cannot convert 'ujis' character 0xA2AF to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2AF to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B0 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B0 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B1 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B1 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B2 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B2 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B3 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B3 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B4 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B4 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B5 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B5 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B6 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B6 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B7 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B7 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B8 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B8 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B9 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B9 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C2 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C2 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C3 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C3 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C4 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C4 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C5 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C5 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C6 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C6 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C7 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C7 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C8 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C8 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C9 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C9 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D1 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D1 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D2 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D2 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D3 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D3 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D4 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D4 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D5 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D5 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D6 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D6 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D7 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D7 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D8 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D8 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D9 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D9 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2DA to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2DA to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2DB to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2DB to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2EB to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2EB to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2EC to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2EC to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2AF to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2AF to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B0 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B0 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B1 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B1 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B2 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B2 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B3 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B3 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B4 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B4 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B5 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B5 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B6 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B6 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B7 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B7 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B8 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B8 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B9 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B9 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C2 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C2 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C3 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C3 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C4 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C4 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C5 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C5 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C6 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C6 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C7 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C7 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C8 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C8 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C9 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C9 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D1 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D1 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D2 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D2 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D3 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D3 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D4 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D4 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D5 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D5 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D6 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D6 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D7 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D7 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D8 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D8 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D9 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D9 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2DA to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2DA to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2DB to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2DB to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2EB to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2EB to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2EC to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2EC to 'utf8'
SELECT * FROM t1
WHERE HEX(CAST(UPPER(a) AS CHAR CHARACTER SET utf8)) <>
HEX(UPPER(CAST(a AS CHAR CHARACTER SET utf8))) ORDER BY code;
@ -3152,70 +3152,70 @@ code a
8FA9C3 ð
8FABB9 ǵ
Warnings:
Warning 1976 Cannot convert 'ujis' character 0xA2AF to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2AF to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B0 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B0 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B1 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B1 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B2 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B2 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B3 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B3 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B4 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B4 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B5 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B5 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B6 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B6 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B7 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B7 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B8 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B8 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B9 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B9 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C2 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C2 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C3 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C3 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C4 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C4 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C5 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C5 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C6 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C6 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C7 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C7 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C8 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C8 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C9 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C9 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D1 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D1 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D2 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D2 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D3 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D3 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D4 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D4 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D5 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D5 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D6 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D6 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D7 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D7 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D8 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D8 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D9 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D9 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2DA to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2DA to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2DB to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2DB to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2EB to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2EB to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2EC to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2EC to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2AF to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2AF to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B0 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B0 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B1 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B1 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B2 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B2 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B3 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B3 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B4 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B4 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B5 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B5 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B6 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B6 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B7 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B7 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B8 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B8 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B9 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B9 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C2 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C2 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C3 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C3 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C4 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C4 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C5 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C5 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C6 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C6 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C7 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C7 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C8 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C8 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C9 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C9 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D1 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D1 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D2 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D2 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D3 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D3 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D4 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D4 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D5 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D5 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D6 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D6 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D7 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D7 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D8 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D8 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D9 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D9 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2DA to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2DA to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2DB to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2DB to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2EB to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2EB to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2EC to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2EC to 'utf8'
#
# WL#3090 Japanese Character Set adjustments
# Test sjis->Unicode conversion
@ -18113,70 +18113,70 @@ FEFC EE8EA9
FEFD EE8EAA
FEFE EE8EAB
Warnings:
Warning 1976 Cannot convert 'ujis' character 0xA2AF to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B0 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B1 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B2 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B3 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B4 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B5 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B6 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B7 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B8 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2B9 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C2 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C3 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C4 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C5 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C6 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C7 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C8 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2C9 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D1 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D2 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D3 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D4 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D5 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D6 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D7 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D8 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2D9 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2DA to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2DB to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2EB to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2EC to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2ED to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2EE to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2EF to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2F0 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2F1 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2FA to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2FB to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2FC to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA2FD to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA3A1 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA3A2 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA3A3 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA3A4 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA3A5 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA3A6 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA3A7 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA3A8 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA3A9 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA3AA to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA3AB to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA3AC to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA3AD to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA3AE to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA3AF to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA3BA to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA3BB to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA3BC to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA3BD to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA3BE to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA3BF to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA3C0 to 'utf8'
Warning 1976 Cannot convert 'ujis' character 0xA3DB to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2AF to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B0 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B1 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B2 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B3 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B4 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B5 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B6 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B7 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B8 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2B9 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C2 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C3 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C4 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C5 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C6 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C7 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C8 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2C9 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D1 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D2 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D3 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D4 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D5 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D6 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D7 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D8 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2D9 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2DA to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2DB to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2EB to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2EC to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2ED to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2EE to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2EF to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2F0 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2F1 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2FA to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2FB to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2FC to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA2FD to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA3A1 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA3A2 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA3A3 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA3A4 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA3A5 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA3A6 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA3A7 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA3A8 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA3A9 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA3AA to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA3AB to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA3AC to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA3AD to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA3AE to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA3AF to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA3BA to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA3BB to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA3BC to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA3BD to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA3BE to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA3BF to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA3C0 to 'utf8'
Warning 1977 Cannot convert 'ujis' character 0xA3DB to 'utf8'
DROP TABLE t1;
#
# WL#3090 Japanese Character Set adjustments

View file

@ -566,7 +566,31 @@ insert into t1 (accountId,balance) values
update t1 set balance=(select sum(balance) from (SELECT balance FROM t1 where accountId like 'dealer%') AS copied) where accountId = 'OPERATOR';
set optimizer_switch=@save_derived_optimizer_switch_bug;
drop table t1;
set optimizer_switch=@save_derived_optimizer_switch;
#
# MDEV-6219:Server crashes in Bitmap<64u>::merge
# (this=0x180, map2=...) on 2nd execution of PS with INSERT .. SELECT,
# derived_merge
#
CREATE TABLE t1 (a VARCHAR(8)) ENGINE=MyISAM;
INSERT INTO t1 VALUES ('foo'),('bar');
create procedure p1()
INSERT INTO t1 SELECT * FROM (
SELECT * FROM t1
) AS sq
WHERE sq.a IN ( SELECT 'baz' FROM DUAL );
call p1();
call p1();
drop procedure p1;
PREPARE stmt FROM "
INSERT INTO t1 SELECT * FROM (
SELECT * FROM t1
) AS sq
WHERE sq.a IN ( SELECT 'baz' FROM DUAL )
";
EXECUTE stmt;
EXECUTE stmt;
deallocate prepare stmt;
drop table t1;
#
# MDEV-6892: WHERE does not apply
#
@ -579,3 +603,4 @@ select x.id, message from (select id from t1) x left join
where coalesce(message,0) <> 0;
id message
drop table t1,t2;
set optimizer_switch=@save_derived_optimizer_switch;

View file

@ -1 +1,2 @@
create server '' foreign data wrapper w2 options (host '127.0.0.1');
drop server '';

View file

@ -1103,3 +1103,19 @@ ORDER BY field;
field
c,c
drop table t3, t2, t1;
#
# MDEV-7821 - Server crashes in Item_func_group_concat::fix_fields on 2nd
# execution of PS
#
CREATE TABLE t1(a INT);
INSERT INTO t1 VALUES(1),(2);
PREPARE stmt FROM "SELECT GROUP_CONCAT(t1a.a ORDER BY 1, t1a.a=0) FROM t1 AS t1a, t1 AS t1b GROUP BY t1a.a";
EXECUTE stmt;
GROUP_CONCAT(t1a.a ORDER BY 1, t1a.a=0)
1,1
2,2
EXECUTE stmt;
GROUP_CONCAT(t1a.a ORDER BY 1, t1a.a=0)
1,1
2,2
DROP TABLE t1;

View file

@ -361,6 +361,19 @@ set optimizer_switch=@optimizer_switch_save;
drop view v_merge, vm;
drop table t1,tv;
#
# MDEV-4017 - GET_LOCK() with negative timeouts has strange behavior
#
SELECT GET_LOCK('ul1', NULL);
GET_LOCK('ul1', NULL)
NULL
Warnings:
Warning 1411 Incorrect timeout value: 'NULL' for function get_lock
SELECT GET_LOCK('ul1', -1);
GET_LOCK('ul1', -1)
NULL
Warnings:
Warning 1411 Incorrect timeout value: '-1' for function get_lock
#
# GET_LOCK, RELEASE_LOCK, IS_USED_LOCK functions test
#
# IS_USED_LOCK, IS_FREE_LOCK: the lock is not acquired

View file

@ -1695,6 +1695,7 @@ Assigning privileges without procs_priv table.
CREATE DATABASE mysqltest1;
CREATE PROCEDURE mysqltest1.test() SQL SECURITY DEFINER
SELECT 1;
CREATE FUNCTION mysqltest1.test() RETURNS INT RETURN 1;
GRANT EXECUTE ON FUNCTION mysqltest1.test TO mysqltest_1@localhost;
ERROR 42S02: Table 'mysql.procs_priv' doesn't exist
GRANT ALL PRIVILEGES ON test.* TO mysqltest_1@localhost;
@ -2557,3 +2558,25 @@ ERROR 42000: Access denied for user 'untrusted'@'localhost' to database 'secret'
# Connection default
DROP USER untrusted@localhost;
DROP DATABASE secret;
#
# BUG#11759114 - '51401: GRANT TREATS NONEXISTENT FUNCTIONS/PRIVILEGES
# DIFFERENTLY'.
#
drop database if exists mysqltest_db1;
create database mysqltest_db1;
create user mysqltest_u1;
# Both GRANT statements below should fail with the same error.
grant execute on function mysqltest_db1.f1 to mysqltest_u1;
ERROR 42000: FUNCTION or PROCEDURE f1 does not exist
grant execute on procedure mysqltest_db1.p1 to mysqltest_u1;
ERROR 42000: FUNCTION or PROCEDURE p1 does not exist
# Let us show that GRANT behaviour for routines is consistent
# with GRANT behaviour for tables. Attempt to grant privilege
# on non-existent table also results in an error.
grant select on mysqltest_db1.t1 to mysqltest_u1;
ERROR 42S02: Table 'mysqltest_db1.t1' doesn't exist
show grants for mysqltest_u1;
Grants for mysqltest_u1@%
GRANT USAGE ON *.* TO 'mysqltest_u1'@'%'
drop database mysqltest_db1;
drop user mysqltest_u1;

View file

@ -14,3 +14,5 @@ Variable_name Value
Handler_prepare 0
drop table t1;
uninstall plugin innodb;
Warnings:
Warning 1620 Plugin is busy and will be uninstalled on shutdown

View file

@ -114,7 +114,7 @@ UPDATE t1 SET a = 2;
ERROR 70100: Query execution was interrupted (max_statement_time exceeded)
SHOW WARNINGS;
Level Code Message
Error 1968 Query execution was interrupted (max_statement_time exceeded)
Error 1969 Query execution was interrupted (max_statement_time exceeded)
ROLLBACK;
DROP TABLE t1;

View file

@ -1,3 +1,4 @@
SET GLOBAL net_write_timeout = 900;
CREATE TABLE A (
pk INTEGER AUTO_INCREMENT PRIMARY KEY,
fdate DATE
@ -19,3 +20,4 @@ DROP TABLE A;
DROP PROCEDURE p_analyze;
DROP FUNCTION rnd3;
SET GLOBAL use_stat_tables = DEFAULT;
SET GLOBAL net_write_timeout = DEFAULT;

View file

@ -1,5 +1,7 @@
#
# Test of MyISAM MRG tables with corrupted children.
# Tests for corrupted MyISAM tables and MyISAMMRG tables with corrupted
# children..
#
# Run with --myisam-recover=force option.
#
# Preparation: we need to make sure that the merge parent
@ -44,20 +46,20 @@ drop procedure p_create;
# Switching to connection 'default'
#
#
# We have to disable the ps-protocol, to avoid
# We have to disable the ps-protocol, to avoid
# "Prepared statement needs to be re-prepared" errors
# -- table def versions change all the time with full table cache.
#
#
drop table if exists t1, t1_mrg, t1_copy;
#
# Prepare a MERGE engine table, that refers to a corrupted
# child.
#
#
create table t1 (a int, key(a)) engine=myisam;
create table t1_mrg (a int) union (t1) engine=merge;
#
# Create a table with a corrupted index file:
# save an old index file, insert more rows,
# save an old index file, insert more rows,
# overwrite the new index file with the old one.
#
insert into t1 (a) values (1), (2), (3);
@ -101,3 +103,48 @@ execute stmt;
deallocate prepare stmt;
set @@global.table_definition_cache=default;
set @@global.table_open_cache=default;
#
# 18075170 - sql node restart required to avoid deadlock after
# restore
#
# Check that auto-repair for MyISAM tables can now happen in the
# middle of transaction, without aborting it.
create table t1 (a int, key(a)) engine=myisam;
create table t2 (a int);
insert into t2 values (1);
# Create a table with a corrupted index file:
# save an old index file, insert more rows,
# overwrite the new index file with the old one.
insert into t1 (a) values (1);
flush table t1;
insert into t1 (a) values (4);
flush table t1;
# Check table is needed to mark the table as crashed.
check table t1;
Table Op Msg_type Msg_text
test.t1 check warning Size of datafile is: 14 Should be: 7
test.t1 check error Record-count is not ok; is 2 Should be: 1
test.t1 check warning Found 2 key parts. Should be: 1
test.t1 check error Corrupt
# At this point we have a corrupt t1
set autocommit = 0;
select * from t2;
a
1
# Without fix select from t1 will break the transaction. After the fix
# transaction should be active and should hold lock on table t2. Alter
# table from con2 will wait only if the transaction is not broken.
select * from t1;
a
1
4
Warnings:
Error 145 Table 't1' is marked as crashed and should be repaired
Error 1194 Table 't1' is marked as crashed and should be repaired
Error 1034 Number of rows changed from 1 to 2
ALTER TABLE t2 ADD val INT;
# With fix we should have alter table waiting for t2 lock here.
ROLLBACK;
SET autocommit = 1;
# Cleanup
drop table t1, t2;

View file

@ -667,6 +667,9 @@ The following options may be given as the first argument:
--performance-schema-max-cond-instances=#
Maximum number of instrumented condition objects. Use 0
to disable, -1 for automated sizing.
--performance-schema-max-digest-length=#
Maximum length considered for digest text, when stored in
performance_schema tables.
--performance-schema-max-file-classes=#
Maximum number of file instruments.
--performance-schema-max-file-handles=#
@ -1316,6 +1319,7 @@ performance-schema-hosts-size -1
performance-schema-instrument
performance-schema-max-cond-classes 80
performance-schema-max-cond-instances -1
performance-schema-max-digest-length 1024
performance-schema-max-file-classes 50
performance-schema-max-file-handles 32768
performance-schema-max-file-instances -1

View file

@ -5,7 +5,7 @@ Warning 1266 Using storage engine MyISAM for table 't1'
DROP TABLE t1;
INSTALL PLUGIN example SONAME 'ha_example';
INSTALL PLUGIN EXAMPLE SONAME 'ha_example';
ERROR HY000: Function 'EXAMPLE' already exists
ERROR HY000: Plugin 'EXAMPLE' already installed
UNINSTALL PLUGIN example;
INSTALL SONAME 'ha_example';
select * from information_schema.plugins where plugin_library like 'ha_example%';

View file

@ -0,0 +1,156 @@
drop table if exists t1;
Warnings:
Note 1051 Unknown table 'test.t1'
drop view if exists view_t1;
Warnings:
Note 1051 Unknown table 'test.view_t1'
SET sql_mode=ONLY_FULL_GROUP_BY;
CREATE TABLE t1 (
pk INT,
f0 INT, f1 INT, f2 INT, f3 INT, f4 INT,
f5 INT, f6 INT, f7 INT, f8 INT, f9 INT,
PRIMARY KEY (pk)
);
CREATE VIEW view_t1 AS SELECT * FROM t1;
CREATE PROCEDURE s1()
SELECT * FROM (
INFORMATION_SCHEMA.`INNODB_BUFFER_PAGE_LRU` AS table1
LEFT JOIN test.view_t1 AS table2
ON ( table2.`f6` = table1.FREE_PAGE_CLOCK)
)
ORDER BY table1.NUMBER_RECORDS
LIMIT 0
;
CALL s1;
POOL_ID LRU_POSITION SPACE PAGE_NUMBER PAGE_TYPE FLUSH_TYPE FIX_COUNT IS_HASHED NEWEST_MODIFICATION OLDEST_MODIFICATION ACCESS_TIME TABLE_NAME INDEX_NAME NUMBER_RECORDS DATA_SIZE COMPRESSED_SIZE COMPRESSED IO_FIX IS_OLD FREE_PAGE_CLOCK pk f0 f1 f2 f3 f4 f5 f6 f7 f8 f9
CALL s1;
POOL_ID LRU_POSITION SPACE PAGE_NUMBER PAGE_TYPE FLUSH_TYPE FIX_COUNT IS_HASHED NEWEST_MODIFICATION OLDEST_MODIFICATION ACCESS_TIME TABLE_NAME INDEX_NAME NUMBER_RECORDS DATA_SIZE COMPRESSED_SIZE COMPRESSED IO_FIX IS_OLD FREE_PAGE_CLOCK pk f0 f1 f2 f3 f4 f5 f6 f7 f8 f9
drop table t1;
drop view view_t1;
drop procedure s1;
CREATE TABLE A (
pk INTEGER AUTO_INCREMENT,
col_int_key INTEGER,
col_varchar_key VARCHAR(1),
PRIMARY KEY (pk)
) ENGINE=MyISAM;
CREATE VIEW view_A AS SELECT * FROM A;
CREATE TABLE C (
pk INTEGER AUTO_INCREMENT,
col_int_nokey INTEGER,
col_int_key INTEGER,
col_date_key DATE,
col_date_nokey DATE,
col_time_key TIME,
col_time_nokey TIME,
col_datetime_key DATETIME,
col_datetime_nokey DATETIME,
col_varchar_key VARCHAR(1),
col_varchar_nokey VARCHAR(1),
PRIMARY KEY (pk)
) ENGINE=MyISAM;
CREATE VIEW view_C AS SELECT * FROM C;
CREATE TABLE AA (
pk INTEGER AUTO_INCREMENT,
col_int_nokey INTEGER,
col_int_key INTEGER,
col_date_key DATE,
col_date_nokey DATE,
col_time_key TIME,
col_time_nokey TIME,
col_datetime_key DATETIME,
col_datetime_nokey DATETIME,
col_varchar_key VARCHAR(1),
col_varchar_nokey VARCHAR(1),
PRIMARY KEY (pk),
KEY (col_varchar_key, col_int_key)
) ENGINE=MyISAM;
CREATE VIEW view_AA AS SELECT * FROM AA;
CREATE TABLE BB (
pk INTEGER AUTO_INCREMENT,
col_int_key INTEGER,
col_varchar_key VARCHAR(1),
col_varchar_nokey VARCHAR(1),
PRIMARY KEY (pk),
KEY (col_varchar_key, col_int_key)
) ENGINE=MyISAM;
CREATE VIEW view_BB AS SELECT * FROM BB;
CREATE TABLE DD (
pk INTEGER AUTO_INCREMENT,
col_int_key INTEGER,
col_date_key DATE,
col_time_key TIME,
col_datetime_key DATETIME,
col_varchar_key VARCHAR(1),
PRIMARY KEY (pk),
KEY (col_varchar_key, col_int_key)
) ENGINE=MyISAM;
CREATE VIEW view_DD AS SELECT * FROM DD;
CREATE TRIGGER k BEFORE INSERT ON `DD` FOR EACH ROW INSERT INTO `view_BB` SELECT * FROM `view_A` LIMIT 0 ;
CREATE TRIGGER r BEFORE INSERT ON `A` FOR EACH ROW INSERT INTO `view_AA` SELECT * FROM `view_C` LIMIT 0 ;
ALTER TABLE `DD` DROP PRIMARY KEY;
ERROR 42000: Incorrect table definition; there can be only one auto column and it must be defined as a key
INSERT INTO `view_A` ( `pk` ) VALUES (NULL);
INSERT INTO `DD` ( `pk` ) VALUES (NULL);
INSERT INTO `A` ( `pk` ) VALUES (NULL);
INSERT INTO `view_DD` ( `pk` ) VALUES (NULL);
drop trigger r;
drop trigger k;
drop view view_A,view_AA,view_C,view_BB,view_DD;
drop table A,C,AA,BB,DD;
CREATE TABLE A (
i INT,
i1 INT,
i2 INT,
d1 DATE,
d2 DATE,
col_time_nokey1 TIME,
col_time_nokey2 TIME,
col_datetime_nokey1 DATETIME,
col_datetime_nokey2 DATETIME,
col_varchar_nokey1 VARCHAR(1),
col_varchar_nokey2 VARCHAR(1)
) ENGINE=MyISAM;
CREATE VIEW view_A AS SELECT * FROM A;
CREATE TABLE B (
col_varchar_nokey VARCHAR(1)
) ENGINE=MyISAM;
CREATE TABLE AA (
i INT,
i1 INT,
i2 INT,
d1 DATE,
d2 DATE,
col_time_nokey1 TIME,
col_time_nokey2 TIME,
col_datetime_nokey1 DATETIME,
col_datetime_nokey2 DATETIME,
col_varchar_nokey1 VARCHAR(1),
col_varchar_nokey2 VARCHAR(1)
) ENGINE=MyISAM;
CREATE VIEW view_AA AS SELECT * FROM AA;
CREATE TABLE DD (
i INT,
i1 INT,
i2 INT,
d1 DATE,
d2 DATE,
col_time_nokey1 TIME,
col_time_nokey2 TIME,
col_datetime_nokey1 DATETIME,
col_datetime_nokey2 DATETIME,
col_varchar_nokey1 VARCHAR(1),
col_varchar_nokey2 VARCHAR(1)
) ENGINE=MyISAM;
CREATE VIEW view_DD AS SELECT * FROM DD;
CREATE TRIGGER tr1 BEFORE INSERT ON `AA` FOR EACH ROW INSERT INTO `view_A` SELECT * FROM `view_AA` LIMIT 0 ;
CREATE TRIGGER tr2 BEFORE INSERT ON `B` FOR EACH ROW INSERT INTO `D` SELECT * FROM `A` LIMIT 0 ;
INSERT INTO `view_AA` ( `i` ) VALUES (1);
INSERT INTO `AA` ( `i` ) VALUES (2);
DELETE FROM `B`;
INSERT INTO `view_DD` ( `i` ) VALUES (1);
INSERT INTO `view_AA` ( `i` ) VALUES (3);
drop trigger tr1;
drop trigger tr2;
drop view view_A, view_AA,view_DD;
drop table A,B,AA,DD;

View file

@ -7861,6 +7861,60 @@ v1
DROP PROCEDURE p1;
DROP TABLE t1;
# End of 5.5 test
#
# MDEV-7040: Crash in field_conv, memcpy_field_possible, part#2
#
create table t1 (
col1 bigint(20),
col2 char(1),
col3 char(2)
);
insert into t1 values (1,'a','a'), (2,'b','b');
create table t2 as select * from t1;
create table t3 as select * from t1;
create table t4 as select * from t1;
create table t5 as select * from t1;
create table t6 as select * from t1;
flush tables;
CREATE PROCEDURE p1()
begin
DECLARE _var1 bigint(20) UNSIGNED;
DECLARE _var2 CHAR(1) DEFAULT NULL;
DECLARE _var3 CHAR(1) DEFAULT NULL;
DECLARE _done BOOLEAN DEFAULT 0;
declare cur1 cursor for
select col1, col2, col3
from t1
where
col1 in (select t2.col1 from t2 where t2.col2=t1.col2) or
col2 in (select t3.col3 from t3 where t3.col3=t1.col2) ;
DECLARE CONTINUE HANDLER FOR NOT FOUND SET _done = 1;
OPEN cur1;
set _var1 = (select _var1 from t4 limit 1);
set _var1 = (select _var1 from t5 limit 1);
set _var1 = (select _var1 from t6 limit 1);
label1:
LOOP
SET _done = 0;
FETCH cur1 INTO _var1, _var2, _var3;
IF _done THEN
LEAVE label1;
END IF;
END LOOP label1;
CLOSE cur1;
end|
set @tmp_toc= @@table_open_cache;
set @tmp_tdc= @@table_definition_cache;
set global table_open_cache=1;
set global table_definition_cache=1;
Warnings:
Warning 1292 Truncated incorrect table_definition_cache value: '1'
call p1();
set global table_open_cache= @tmp_toc;
set global table_definition_cache= @tmp_tdc;
drop procedure p1;
drop table t1,t2,t3,t4,t5,t6;
# End of 10.0 test
CREATE FUNCTION f(f1 VARCHAR(64) COLLATE latin1_german2_ci)
RETURNS VARCHAR(64)
BEGIN

View file

@ -2145,6 +2145,24 @@ drop database mysqltest1;
drop database mysqltest2;
drop database mysqltest3;
drop database mysqltest4;
#
# MDEV-7810 Wrong result on execution of a query as a PS
# (both 1st and further executions)
CREATE TABLE t1 (a INT NOT NULL) ENGINE=MyISAM;
INSERT INTO t1 VALUES (0),(8);
SELECT a FROM (SELECT DISTINCT * FROM t1) AS sq WHERE a IN (SELECT MIN(t2.a) FROM (t1 AS t2));
a
0
PREPARE stmt FROM "
SELECT a FROM (SELECT DISTINCT * FROM t1) AS sq WHERE a IN (SELECT MIN(t2.a) FROM (t1 AS t2))
";
execute stmt;
a
0
execute stmt;
a
0
drop table t1;
# End of 5.5 tests
#
# MDEV-7220: Materialization strategy is not used for REPLACE ... SELECT
@ -2197,6 +2215,24 @@ Handler_read_rnd_next 6003
Handler_tmp_write 2000
Handler_write 1000
drop table t0,t1,t2,t3;
#
# MDEV-7971: Assertion `name != __null' failed in ACL_internal_schema_registry::lookup
# on 2nd execution os PS with multi-table update
#
CREATE TABLE t1 (f1 INT);
INSERT INTO t1 VALUES (1),(2);
CREATE TABLE t2 (f2 INT);
INSERT INTO t2 VALUES (3),(4);
CREATE TABLE t3 (f3 INT);
INSERT INTO t3 VALUES (5),(6);
PREPARE stmt FROM '
UPDATE t1, t2
SET f1 = 5
WHERE 8 IN ( SELECT MIN(f3) FROM t3 )
';
EXECUTE stmt;
EXECUTE stmt;
DROP TABLE t1,t2,t3;
set @subselect_mat_test_optimizer_switch_value=null;
set @@optimizer_switch='materialization=on,in_to_exists=off,semijoin=off';
set optimizer_switch='mrr=on,mrr_sort_keys=on,index_condition_pushdown=on';

View file

@ -1283,5 +1283,38 @@ id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY T2_0_ ref FK_T2_T1Id FK_T2_T1Id 8 test.T2_1_.t1idref 1 Using index; End temporary
drop table t3,t2,t1;
set optimizer_search_depth=@tmp7474;
#
#
#
CREATE TABLE t1 (
id int(16) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE t2 (
id int(16) NOT NULL AUTO_INCREMENT,
t3_id int(16) NOT NULL DEFAULT '0',
t1_id int(16) NOT NULL DEFAULT '0',
PRIMARY KEY (id),
KEY t3_idx (t3_id),
KEY t1_idx (t1_id)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE t3 (
id int(16) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (id)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO t3 VALUES (1);
INSERT INTO t2 VALUES (1, 1, 1);
INSERT INTO t2 VALUES (2, 1, 2);
INSERT INTO t2 VALUES (3, 1, 2);
INSERT INTO t2 VALUES (4, 1, 1);
INSERT INTO t1 VALUES (1);
INSERT INTO t1 VALUES (2);
SELECT * FROM t1 WHERE t1.id IN (
SELECT t2.t1_id FROM t3 JOIN t2 ON t3.id = t2.t3_id WHERE t3.id = 1
);
id
1
2
drop table t1,t2,t3;
# This must be the last in the file:
set optimizer_switch=@subselect_sj2_tmp;

View file

@ -1298,6 +1298,39 @@ id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY T2_0_ ref FK_T2_T1Id FK_T2_T1Id 8 test.T2_1_.t1idref 1 Using index; End temporary
drop table t3,t2,t1;
set optimizer_search_depth=@tmp7474;
#
#
#
CREATE TABLE t1 (
id int(16) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE t2 (
id int(16) NOT NULL AUTO_INCREMENT,
t3_id int(16) NOT NULL DEFAULT '0',
t1_id int(16) NOT NULL DEFAULT '0',
PRIMARY KEY (id),
KEY t3_idx (t3_id),
KEY t1_idx (t1_id)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE t3 (
id int(16) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (id)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO t3 VALUES (1);
INSERT INTO t2 VALUES (1, 1, 1);
INSERT INTO t2 VALUES (2, 1, 2);
INSERT INTO t2 VALUES (3, 1, 2);
INSERT INTO t2 VALUES (4, 1, 1);
INSERT INTO t1 VALUES (1);
INSERT INTO t1 VALUES (2);
SELECT * FROM t1 WHERE t1.id IN (
SELECT t2.t1_id FROM t3 JOIN t2 ON t3.id = t2.t3_id WHERE t3.id = 1
);
id
1
2
drop table t1,t2,t3;
# This must be the last in the file:
set optimizer_switch=@subselect_sj2_tmp;
#

View file

@ -1285,6 +1285,39 @@ id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY T2_0_ ref FK_T2_T1Id FK_T2_T1Id 8 test.T2_1_.t1idref 1 Using index; End temporary
drop table t3,t2,t1;
set optimizer_search_depth=@tmp7474;
#
#
#
CREATE TABLE t1 (
id int(16) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE t2 (
id int(16) NOT NULL AUTO_INCREMENT,
t3_id int(16) NOT NULL DEFAULT '0',
t1_id int(16) NOT NULL DEFAULT '0',
PRIMARY KEY (id),
KEY t3_idx (t3_id),
KEY t1_idx (t1_id)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE t3 (
id int(16) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (id)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO t3 VALUES (1);
INSERT INTO t2 VALUES (1, 1, 1);
INSERT INTO t2 VALUES (2, 1, 2);
INSERT INTO t2 VALUES (3, 1, 2);
INSERT INTO t2 VALUES (4, 1, 1);
INSERT INTO t1 VALUES (1);
INSERT INTO t1 VALUES (2);
SELECT * FROM t1 WHERE t1.id IN (
SELECT t2.t1_id FROM t3 JOIN t2 ON t3.id = t2.t3_id WHERE t3.id = 1
);
id
1
2
drop table t1,t2,t3;
# This must be the last in the file:
set optimizer_switch=@subselect_sj2_tmp;
set optimizer_switch=default;

View file

@ -2185,6 +2185,24 @@ drop database mysqltest1;
drop database mysqltest2;
drop database mysqltest3;
drop database mysqltest4;
#
# MDEV-7810 Wrong result on execution of a query as a PS
# (both 1st and further executions)
CREATE TABLE t1 (a INT NOT NULL) ENGINE=MyISAM;
INSERT INTO t1 VALUES (0),(8);
SELECT a FROM (SELECT DISTINCT * FROM t1) AS sq WHERE a IN (SELECT MIN(t2.a) FROM (t1 AS t2));
a
0
PREPARE stmt FROM "
SELECT a FROM (SELECT DISTINCT * FROM t1) AS sq WHERE a IN (SELECT MIN(t2.a) FROM (t1 AS t2))
";
execute stmt;
a
0
execute stmt;
a
0
drop table t1;
# End of 5.5 tests
#
# MDEV-7220: Materialization strategy is not used for REPLACE ... SELECT
@ -2237,3 +2255,21 @@ Handler_read_rnd_next 6003
Handler_tmp_write 2000
Handler_write 1000
drop table t0,t1,t2,t3;
#
# MDEV-7971: Assertion `name != __null' failed in ACL_internal_schema_registry::lookup
# on 2nd execution os PS with multi-table update
#
CREATE TABLE t1 (f1 INT);
INSERT INTO t1 VALUES (1),(2);
CREATE TABLE t2 (f2 INT);
INSERT INTO t2 VALUES (3),(4);
CREATE TABLE t3 (f3 INT);
INSERT INTO t3 VALUES (5),(6);
PREPARE stmt FROM '
UPDATE t1, t2
SET f1 = 5
WHERE 8 IN ( SELECT MIN(f3) FROM t3 )
';
EXECUTE stmt;
EXECUTE stmt;
DROP TABLE t1,t2,t3;

View file

@ -146,3 +146,37 @@ hex(f2) hex(f3)
0000
drop table t1;
End of 5.0 tests
#
# Start of 10.0 tests
#
#
# MDEV-8472 BINARY, VARBINARY and BLOB return different warnings on CAST to DECIMAL
#
SET NAMES utf8;
CREATE TABLE t1 (a BINARY(30));
INSERT INTO t1 VALUES ('1äÖüß@µ*$');
SELECT CAST(a AS DECIMAL) FROM t1;
CAST(a AS DECIMAL)
1
Warnings:
Warning 1292 Truncated incorrect DECIMAL value: '1\xC3\xA4\xC3\x96\xC3\xBC\xC3\x9F@\xC2\xB5*$\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'
DROP TABLE t1;
CREATE TABLE t1 (a VARBINARY(30));
INSERT INTO t1 VALUES ('1äÖüß@µ*$');
SELECT CAST(a AS DECIMAL) FROM t1;
CAST(a AS DECIMAL)
1
Warnings:
Warning 1292 Truncated incorrect DECIMAL value: '1\xC3\xA4\xC3\x96\xC3\xBC\xC3\x9F@\xC2\xB5*$'
DROP TABLE t1;
CREATE TABLE t1 (a BLOB);
INSERT INTO t1 VALUES ('1äÖüß@µ*$');
SELECT CAST(a AS DECIMAL) FROM t1;
CAST(a AS DECIMAL)
1
Warnings:
Warning 1292 Truncated incorrect DECIMAL value: '1\xC3\xA4\xC3\x96\xC3\xBC\xC3\x9F@\xC2\xB5*$'
DROP TABLE t1;
#
# End of 10.0 tests
#

View file

@ -5428,6 +5428,21 @@ View Create View character_set_client collation_connection
v2 CREATE ALGORITHM=MERGE DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v2` AS select (`t1`.`b` + 1) AS `c` from `t1` latin1 latin1_swedish_ci
drop view v2;
drop table t1;
#
# MDEV-8554: Server crashes in base_list_iterator::next_fast on 1st execution of PS with a multi-table update
#
CREATE TABLE t1 (a INT) ENGINE=MyISAM;
INSERT INTO t1 VALUES (1),(2);
CREATE TABLE t2 (b INT) ENGINE=MyISAM;
INSERT INTO t2 VALUES (3),(4);
CREATE TABLE t3 (c INT) ENGINE=MyISAM;
INSERT INTO t3 VALUES (5),(6);
CREATE OR REPLACE ALGORITHM=MERGE VIEW v3 AS SELECT * FROM t3;
PREPARE stmt FROM 'UPDATE t1, t2 SET a = 1 WHERE a IN ( SELECT 0 FROM t3 )';
UPDATE t1, t2 SET a = 1 WHERE a IN ( SELECT 0 FROM v3 );
EXECUTE stmt;
DROP TABLE t1, t2, t3;
DROP VIEW v3;
# -----------------------------------------------------------------
# -- End of 5.5 tests.
# -----------------------------------------------------------------

View file

@ -5,7 +5,7 @@ Warning 1266 Using storage engine MyISAM for table 't1'
DROP TABLE t1;
INSTALL PLUGIN archive SONAME 'ha_archive.so';
INSTALL PLUGIN ARCHIVE SONAME 'ha_archive.so';
ERROR HY000: Function 'ARCHIVE' already exists
ERROR HY000: Plugin 'ARCHIVE' already installed
UNINSTALL PLUGIN archive;
INSTALL PLUGIN archive SONAME 'ha_archive.so';
CREATE TABLE t1(a int) ENGINE=ARCHIVE;

View file

@ -7,7 +7,7 @@ DROP TABLE t1;
--replace_regex /\.dll/.so/
eval INSTALL PLUGIN archive SONAME '$HA_ARCHIVE_SO';
--replace_regex /\.dll/.so/
--error 1125
--error ER_PLUGIN_INSTALLED
eval INSTALL PLUGIN ARCHIVE SONAME '$HA_ARCHIVE_SO';
UNINSTALL PLUGIN archive;

View file

@ -259,7 +259,7 @@ Warning 1196 Some non-transactional changed tables couldn't be rolled back
create table t0 (n int);
insert t0 select * from t1;
set autocommit=1;
insert into t0 select GET_LOCK("lock1",null);
insert into t0 select GET_LOCK("lock1",0);
set autocommit=0;
create table t2 (n int) engine=innodb;
insert into t2 values (3);

View file

@ -243,7 +243,7 @@ Warning 1196 Some non-transactional changed tables couldn't be rolled back
create table t0 (n int);
insert t0 select * from t1;
set autocommit=1;
insert into t0 select GET_LOCK("lock1",null);
insert into t0 select GET_LOCK("lock1",0);
Warnings:
Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. Statement is unsafe because it uses a system function that may return a different value on the slave.
set autocommit=0;
@ -293,7 +293,7 @@ master-bin.000001 # Gtid # # BEGIN GTID #-#-#
master-bin.000001 # Query # # use `test`; insert t0 select * from t1
master-bin.000001 # Query # # COMMIT
master-bin.000001 # Gtid # # BEGIN GTID #-#-#
master-bin.000001 # Query # # use `test`; insert into t0 select GET_LOCK("lock1",null)
master-bin.000001 # Query # # use `test`; insert into t0 select GET_LOCK("lock1",0)
master-bin.000001 # Query # # COMMIT
master-bin.000001 # Gtid # # GTID #-#-#
master-bin.000001 # Query # # use `test`; create table t2 (n int) engine=innodb

View file

@ -2282,7 +2282,7 @@ NULL NULL 1
---????????@??*$-- ---äÖüß@µ*$-- 4
-1 -1 5
Warnings:
Warning 1976 Cannot convert 'latin1' character 0xC3 to 'koi8r'
Warning 1977 Cannot convert 'latin1' character 0xC3 to 'koi8r'
SHOW CREATE VIEW v1;
View Create View character_set_client collation_connection
v1 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select convert(`t1_values`.`my_varchar_1000` using koi8r) AS `CONVERT(my_varchar_1000 USING koi8r)`,`t1_values`.`my_varchar_1000` AS `my_varchar_1000`,`t1_values`.`id` AS `id` from `t1_values` latin1 latin1_swedish_ci
@ -2296,7 +2296,7 @@ NULL NULL 1
---????????@??*$-- ---äÖüß@µ*$-- 4
-1 -1 5
Warnings:
Warning 1976 Cannot convert 'latin1' character 0xC3 to 'koi8r'
Warning 1977 Cannot convert 'latin1' character 0xC3 to 'koi8r'
DROP VIEW v1;
@ -2312,7 +2312,7 @@ NULL NULL 1
---????????@??*$-- ---äÖüß@µ*$-- 4
-1 -1 5
Warnings:
Warning 1976 Cannot convert 'latin1' character 0xC3 to 'koi8r'
Warning 1977 Cannot convert 'latin1' character 0xC3 to 'koi8r'
SHOW CREATE VIEW v1;
View Create View character_set_client collation_connection
v1 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select convert(`t1_values`.`my_char_30` using koi8r) AS `CONVERT(my_char_30 USING koi8r)`,`t1_values`.`my_char_30` AS `my_char_30`,`t1_values`.`id` AS `id` from `t1_values` latin1 latin1_swedish_ci
@ -2326,7 +2326,7 @@ NULL NULL 1
---????????@??*$-- ---äÖüß@µ*$-- 4
-1 -1 5
Warnings:
Warning 1976 Cannot convert 'latin1' character 0xC3 to 'koi8r'
Warning 1977 Cannot convert 'latin1' character 0xC3 to 'koi8r'
DROP VIEW v1;
@ -3412,7 +3412,7 @@ Warning 1292 Truncated incorrect DECIMAL value: ''
Warning 1918 Encountered illegal value '' when converting to DECIMAL
Warning 1292 Truncated incorrect DECIMAL value: '<---------1000 characters-------------------------------------------------------------------------------------------------------'
Warning 1918 Encountered illegal value '' when converting to DECIMAL
Warning 1292 Truncated incorrect DECIMAL value: ' ---äÖüß@µ*$-- '
Warning 1292 Truncated incorrect DECIMAL value: ' ---\xC3\xA4\xC3\x96\xC3\xBC\xC3\x9F@\xC2\xB5*$-- '
SHOW CREATE VIEW v1;
View Create View character_set_client collation_connection
v1 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select cast(`t1_values`.`my_varbinary_1000` as decimal(37,2)) AS `CAST(my_varbinary_1000 AS DECIMAL(37,2))`,`t1_values`.`my_varbinary_1000` AS `my_varbinary_1000`,`t1_values`.`id` AS `id` from `t1_values` latin1 latin1_swedish_ci
@ -3432,7 +3432,7 @@ Warning 1292 Truncated incorrect DECIMAL value: ''
Warning 1918 Encountered illegal value '' when converting to DECIMAL
Warning 1292 Truncated incorrect DECIMAL value: '<---------1000 characters-------------------------------------------------------------------------------------------------------'
Warning 1918 Encountered illegal value '' when converting to DECIMAL
Warning 1292 Truncated incorrect DECIMAL value: ' ---äÖüß@µ*$-- '
Warning 1292 Truncated incorrect DECIMAL value: ' ---\xC3\xA4\xC3\x96\xC3\xBC\xC3\x9F@\xC2\xB5*$-- '
DROP VIEW v1;
@ -3500,7 +3500,7 @@ Warning 1292 Truncated incorrect DECIMAL value: ''
Warning 1918 Encountered illegal value '' when converting to DECIMAL
Warning 1292 Truncated incorrect DECIMAL value: '<---------1000 characters-------------------------------------------------------------------------------------------------------'
Warning 1918 Encountered illegal value '' when converting to DECIMAL
Warning 1292 Truncated incorrect DECIMAL value: ' ---äÖüß@µ*$-- '
Warning 1292 Truncated incorrect DECIMAL value: ' ---äÖüß@µ*$-- '
SHOW CREATE VIEW v1;
View Create View character_set_client collation_connection
v1 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select cast(`t1_values`.`my_varchar_1000` as decimal(37,2)) AS `CAST(my_varchar_1000 AS DECIMAL(37,2))`,`t1_values`.`my_varchar_1000` AS `my_varchar_1000`,`t1_values`.`id` AS `id` from `t1_values` latin1 latin1_swedish_ci
@ -3520,7 +3520,7 @@ Warning 1292 Truncated incorrect DECIMAL value: ''
Warning 1918 Encountered illegal value '' when converting to DECIMAL
Warning 1292 Truncated incorrect DECIMAL value: '<---------1000 characters-------------------------------------------------------------------------------------------------------'
Warning 1918 Encountered illegal value '' when converting to DECIMAL
Warning 1292 Truncated incorrect DECIMAL value: ' ---äÖüß@µ*$-- '
Warning 1292 Truncated incorrect DECIMAL value: ' ---äÖüß@µ*$-- '
DROP VIEW v1;

View file

@ -2283,7 +2283,7 @@ NULL NULL 1
---????????@??*$-- ---äÖüß@µ*$-- 4
-1 -1 5
Warnings:
Warning 1976 Cannot convert 'latin1' character 0xC3 to 'koi8r'
Warning 1977 Cannot convert 'latin1' character 0xC3 to 'koi8r'
SHOW CREATE VIEW v1;
View Create View character_set_client collation_connection
v1 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select convert(`t1_values`.`my_varchar_1000` using koi8r) AS `CONVERT(my_varchar_1000 USING koi8r)`,`t1_values`.`my_varchar_1000` AS `my_varchar_1000`,`t1_values`.`id` AS `id` from `t1_values` latin1 latin1_swedish_ci
@ -2297,7 +2297,7 @@ NULL NULL 1
---????????@??*$-- ---äÖüß@µ*$-- 4
-1 -1 5
Warnings:
Warning 1976 Cannot convert 'latin1' character 0xC3 to 'koi8r'
Warning 1977 Cannot convert 'latin1' character 0xC3 to 'koi8r'
DROP VIEW v1;
@ -2313,7 +2313,7 @@ NULL NULL 1
---????????@??*$-- ---äÖüß@µ*$-- 4
-1 -1 5
Warnings:
Warning 1976 Cannot convert 'latin1' character 0xC3 to 'koi8r'
Warning 1977 Cannot convert 'latin1' character 0xC3 to 'koi8r'
SHOW CREATE VIEW v1;
View Create View character_set_client collation_connection
v1 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select convert(`t1_values`.`my_char_30` using koi8r) AS `CONVERT(my_char_30 USING koi8r)`,`t1_values`.`my_char_30` AS `my_char_30`,`t1_values`.`id` AS `id` from `t1_values` latin1 latin1_swedish_ci
@ -2327,7 +2327,7 @@ NULL NULL 1
---????????@??*$-- ---äÖüß@µ*$-- 4
-1 -1 5
Warnings:
Warning 1976 Cannot convert 'latin1' character 0xC3 to 'koi8r'
Warning 1977 Cannot convert 'latin1' character 0xC3 to 'koi8r'
DROP VIEW v1;
@ -3413,7 +3413,7 @@ Warning 1292 Truncated incorrect DECIMAL value: ''
Warning 1918 Encountered illegal value '' when converting to DECIMAL
Warning 1292 Truncated incorrect DECIMAL value: '<---------1000 characters-------------------------------------------------------------------------------------------------------'
Warning 1918 Encountered illegal value '' when converting to DECIMAL
Warning 1292 Truncated incorrect DECIMAL value: ' ---äÖüß@µ*$-- '
Warning 1292 Truncated incorrect DECIMAL value: ' ---\xC3\xA4\xC3\x96\xC3\xBC\xC3\x9F@\xC2\xB5*$-- '
SHOW CREATE VIEW v1;
View Create View character_set_client collation_connection
v1 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select cast(`t1_values`.`my_varbinary_1000` as decimal(37,2)) AS `CAST(my_varbinary_1000 AS DECIMAL(37,2))`,`t1_values`.`my_varbinary_1000` AS `my_varbinary_1000`,`t1_values`.`id` AS `id` from `t1_values` latin1 latin1_swedish_ci
@ -3433,7 +3433,7 @@ Warning 1292 Truncated incorrect DECIMAL value: ''
Warning 1918 Encountered illegal value '' when converting to DECIMAL
Warning 1292 Truncated incorrect DECIMAL value: '<---------1000 characters-------------------------------------------------------------------------------------------------------'
Warning 1918 Encountered illegal value '' when converting to DECIMAL
Warning 1292 Truncated incorrect DECIMAL value: ' ---äÖüß@µ*$-- '
Warning 1292 Truncated incorrect DECIMAL value: ' ---\xC3\xA4\xC3\x96\xC3\xBC\xC3\x9F@\xC2\xB5*$-- '
DROP VIEW v1;
@ -3501,7 +3501,7 @@ Warning 1292 Truncated incorrect DECIMAL value: ''
Warning 1918 Encountered illegal value '' when converting to DECIMAL
Warning 1292 Truncated incorrect DECIMAL value: '<---------1000 characters-------------------------------------------------------------------------------------------------------'
Warning 1918 Encountered illegal value '' when converting to DECIMAL
Warning 1292 Truncated incorrect DECIMAL value: ' ---äÖüß@µ*$-- '
Warning 1292 Truncated incorrect DECIMAL value: ' ---äÖüß@µ*$-- '
SHOW CREATE VIEW v1;
View Create View character_set_client collation_connection
v1 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select cast(`t1_values`.`my_varchar_1000` as decimal(37,2)) AS `CAST(my_varchar_1000 AS DECIMAL(37,2))`,`t1_values`.`my_varchar_1000` AS `my_varchar_1000`,`t1_values`.`id` AS `id` from `t1_values` latin1 latin1_swedish_ci
@ -3521,7 +3521,7 @@ Warning 1292 Truncated incorrect DECIMAL value: ''
Warning 1918 Encountered illegal value '' when converting to DECIMAL
Warning 1292 Truncated incorrect DECIMAL value: '<---------1000 characters-------------------------------------------------------------------------------------------------------'
Warning 1918 Encountered illegal value '' when converting to DECIMAL
Warning 1292 Truncated incorrect DECIMAL value: ' ---äÖüß@µ*$-- '
Warning 1292 Truncated incorrect DECIMAL value: ' ---äÖüß@µ*$-- '
DROP VIEW v1;

View file

@ -2283,7 +2283,7 @@ NULL NULL 1
---????????@??*$-- ---äÖüß@µ*$-- 4
-1 -1 5
Warnings:
Warning 1976 Cannot convert 'latin1' character 0xC3 to 'koi8r'
Warning 1977 Cannot convert 'latin1' character 0xC3 to 'koi8r'
SHOW CREATE VIEW v1;
View Create View character_set_client collation_connection
v1 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select convert(`t1_values`.`my_varchar_1000` using koi8r) AS `CONVERT(my_varchar_1000 USING koi8r)`,`t1_values`.`my_varchar_1000` AS `my_varchar_1000`,`t1_values`.`id` AS `id` from `t1_values` latin1 latin1_swedish_ci
@ -2297,7 +2297,7 @@ NULL NULL 1
---????????@??*$-- ---äÖüß@µ*$-- 4
-1 -1 5
Warnings:
Warning 1976 Cannot convert 'latin1' character 0xC3 to 'koi8r'
Warning 1977 Cannot convert 'latin1' character 0xC3 to 'koi8r'
DROP VIEW v1;
@ -2313,7 +2313,7 @@ NULL NULL 1
---????????@??*$-- ---äÖüß@µ*$-- 4
-1 -1 5
Warnings:
Warning 1976 Cannot convert 'latin1' character 0xC3 to 'koi8r'
Warning 1977 Cannot convert 'latin1' character 0xC3 to 'koi8r'
SHOW CREATE VIEW v1;
View Create View character_set_client collation_connection
v1 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select convert(`t1_values`.`my_char_30` using koi8r) AS `CONVERT(my_char_30 USING koi8r)`,`t1_values`.`my_char_30` AS `my_char_30`,`t1_values`.`id` AS `id` from `t1_values` latin1 latin1_swedish_ci
@ -2327,7 +2327,7 @@ NULL NULL 1
---????????@??*$-- ---äÖüß@µ*$-- 4
-1 -1 5
Warnings:
Warning 1976 Cannot convert 'latin1' character 0xC3 to 'koi8r'
Warning 1977 Cannot convert 'latin1' character 0xC3 to 'koi8r'
DROP VIEW v1;
@ -3413,7 +3413,7 @@ Warning 1292 Truncated incorrect DECIMAL value: ''
Warning 1918 Encountered illegal value '' when converting to DECIMAL
Warning 1292 Truncated incorrect DECIMAL value: '<---------1000 characters-------------------------------------------------------------------------------------------------------'
Warning 1918 Encountered illegal value '' when converting to DECIMAL
Warning 1292 Truncated incorrect DECIMAL value: ' ---äÖüß@µ*$-- '
Warning 1292 Truncated incorrect DECIMAL value: ' ---\xC3\xA4\xC3\x96\xC3\xBC\xC3\x9F@\xC2\xB5*$-- '
SHOW CREATE VIEW v1;
View Create View character_set_client collation_connection
v1 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select cast(`t1_values`.`my_varbinary_1000` as decimal(37,2)) AS `CAST(my_varbinary_1000 AS DECIMAL(37,2))`,`t1_values`.`my_varbinary_1000` AS `my_varbinary_1000`,`t1_values`.`id` AS `id` from `t1_values` latin1 latin1_swedish_ci
@ -3433,7 +3433,7 @@ Warning 1292 Truncated incorrect DECIMAL value: ''
Warning 1918 Encountered illegal value '' when converting to DECIMAL
Warning 1292 Truncated incorrect DECIMAL value: '<---------1000 characters-------------------------------------------------------------------------------------------------------'
Warning 1918 Encountered illegal value '' when converting to DECIMAL
Warning 1292 Truncated incorrect DECIMAL value: ' ---äÖüß@µ*$-- '
Warning 1292 Truncated incorrect DECIMAL value: ' ---\xC3\xA4\xC3\x96\xC3\xBC\xC3\x9F@\xC2\xB5*$-- '
DROP VIEW v1;
@ -3501,7 +3501,7 @@ Warning 1292 Truncated incorrect DECIMAL value: ''
Warning 1918 Encountered illegal value '' when converting to DECIMAL
Warning 1292 Truncated incorrect DECIMAL value: '<---------1000 characters-------------------------------------------------------------------------------------------------------'
Warning 1918 Encountered illegal value '' when converting to DECIMAL
Warning 1292 Truncated incorrect DECIMAL value: ' ---äÖüß@µ*$-- '
Warning 1292 Truncated incorrect DECIMAL value: ' ---äÖüß@µ*$-- '
SHOW CREATE VIEW v1;
View Create View character_set_client collation_connection
v1 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select cast(`t1_values`.`my_varchar_1000` as decimal(37,2)) AS `CAST(my_varchar_1000 AS DECIMAL(37,2))`,`t1_values`.`my_varchar_1000` AS `my_varchar_1000`,`t1_values`.`id` AS `id` from `t1_values` latin1 latin1_swedish_ci
@ -3521,7 +3521,7 @@ Warning 1292 Truncated incorrect DECIMAL value: ''
Warning 1918 Encountered illegal value '' when converting to DECIMAL
Warning 1292 Truncated incorrect DECIMAL value: '<---------1000 characters-------------------------------------------------------------------------------------------------------'
Warning 1918 Encountered illegal value '' when converting to DECIMAL
Warning 1292 Truncated incorrect DECIMAL value: ' ---äÖüß@µ*$-- '
Warning 1292 Truncated incorrect DECIMAL value: ' ---äÖüß@µ*$-- '
DROP VIEW v1;

View file

@ -0,0 +1,13 @@
#
# Bug #20762798 FK DDL: CRASH IN DICT_FOREIGN_REMOVE_FROM_CACHE
#
create table t1(a int, b int, key(a),key(b))engine=innodb;
create table t2(a int, b int, key(a),key(b))engine=innodb;
alter table t2 add constraint b foreign key (b) references t1(a);
alter table t1 add constraint b1 foreign key (b) references t2(a);
alter table t2 add constraint b1 foreign key (b) references t1(a);
ERROR HY000: Can't create table `test`.`#sql-temporary` (errno: 121 "Duplicate key on write or update")
alter table t2 drop foreign key b;
alter table t1 drop foreign key b1;
drop table t2;
drop table t1;

View file

@ -0,0 +1,45 @@
drop database if exists moodle19;
Warnings:
Note 1008 Can't drop database 'moodle19'; database doesn't exist
create database moodle19;
use moodle19;
CREATE TABLE `mdl_course_modules` (
`id` bigint(10) NOT NULL AUTO_INCREMENT,
`course` bigint(10) NOT NULL DEFAULT '0',
`module` bigint(10) NOT NULL DEFAULT '0',
`instance` bigint(10) NOT NULL DEFAULT '0',
`section` bigint(10) NOT NULL DEFAULT '0',
`idnumber` varchar(100) DEFAULT NULL,
`added` bigint(10) NOT NULL DEFAULT '0',
`delay` varchar(10) NOT NULL DEFAULT '0',
`score` smallint(4) NOT NULL DEFAULT '0',
`indent` mediumint(5) NOT NULL DEFAULT '0',
`visible` tinyint(1) NOT NULL DEFAULT '1',
`checkboxesforprereqs` tinyint(1) NOT NULL DEFAULT '0',
`stylewhencomplete` varchar(200) DEFAULT '',
`checkboxforcomplete` tinyint(1) NOT NULL DEFAULT '0',
`stylewhenlocked` varchar(200) DEFAULT 'locked',
`visiblewhenlocked` tinyint(1) NOT NULL DEFAULT '1',
`visibleold` tinyint(1) NOT NULL DEFAULT '1',
`groupmode` smallint(4) NOT NULL DEFAULT '0',
`groupingid` bigint(10) NOT NULL DEFAULT '0',
`groupmembersonly` smallint(4) NOT NULL DEFAULT '0',
`completion` tinyint(1) NOT NULL DEFAULT '0',
`completiongradeitemnumber` bigint(10) DEFAULT NULL,
`completionview` tinyint(1) NOT NULL DEFAULT '0',
`completionexpected` bigint(10) NOT NULL DEFAULT '0',
`availablefrom` bigint(10) NOT NULL DEFAULT '0',
`availableuntil` bigint(10) NOT NULL DEFAULT '0',
`showavailability` tinyint(1) NOT NULL DEFAULT '0',
`showdescription` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `mdl_courmodu_vis_ix` (`visible`),
KEY `mdl_courmodu_cou_ix` (`course`),
KEY `mdl_courmodu_mod_ix` (`module`),
KEY `mdl_courmodu_ins_ix` (`instance`),
KEY `mdl_courmodu_idncou_ix` (`idnumber`,`course`),
KEY `mdl_courmodu_gro_ix` (`groupingid`)
) ENGINE=InnoDB AUTO_INCREMENT=447023 DEFAULT CHARSET=utf8 COMMENT='course_modules table retrofitted from MySQL';
# Inserting 2701 rows into the table...
ALTER TABLE moodle19.mdl_course_modules ADD stefantest LONGTEXT CHARACTER SET utf8 COLLATE utf8_general_ci AFTER showdescription;
drop database moodle19;

View file

@ -0,0 +1,29 @@
CREATE TABLE t1 (
`i1` INT(10) UNSIGNED NOT NULL,
`d1` TIMESTAMP NULL DEFAULT NULL
) ENGINE=innodb;
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`i1` int(10) unsigned NOT NULL,
`d1` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1
INSERT INTO t1 (i1) VALUES (1), (2), (3), (4), (5);
select * from t1;
i1 d1
1 NULL
2 NULL
3 NULL
4 NULL
5 NULL
set sql_mode = 'STRICT_ALL_TABLES,NO_ZERO_DATE';
ALTER TABLE t1 CHANGE `d1` `d1` TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL;
drop table t1;
CREATE TABLE t1 (
`i1` INT(10) UNSIGNED NOT NULL,
`d1` TIMESTAMP NULL DEFAULT NULL
) ENGINE=innodb;
INSERT INTO t1 (i1) VALUES (1), (2), (3), (4), (5);
ALTER TABLE t1 CHANGE `d1` `d1` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP;
drop table t1;
set sql_mode = '';

View file

@ -0,0 +1,112 @@
CREATE TABLE t1 (
id int(11) NOT NULL PRIMARY KEY,
a int(11) NOT NULL,
b int(11) NOT NULL,
c int not null,
CONSTRAINT test FOREIGN KEY (b) REFERENCES t1 (id)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE t2 (
id int(11) NOT NULL PRIMARY KEY,
a int(11) NOT NULL,
b int(11) NOT NULL,
c int not null,
CONSTRAINT mytest FOREIGN KEY (c) REFERENCES t1(id),
CONSTRAINT test FOREIGN KEY (b) REFERENCES t2 (id)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
ERROR HY000: Can't create table `test`.`t2` (errno: 121 "Duplicate key on write or update")
show warnings;
Level Code Message
Warning 121 Create or Alter table `test`.`t2` with foreign key constraint failed. Foreign key constraint `test/test` already exists on data dictionary. Foreign key constraint names need to be unique in database. Error in foreign key definition: CONSTRAINT `test` FOREIGN KEY (`b`) REFERENCES `test`.`t2` (`id`).
Error 1005 Can't create table `test`.`t2` (errno: 121 "Duplicate key on write or update")
Warning 1022 Can't write; duplicate key in table 't2'
drop table t1;
create table t1(a int) engine=innodb;
create table t2(a int, constraint a foreign key a (a) references t1(a)) engine=innodb;
ERROR HY000: Can't create table `test`.`t2` (errno: 150 "Foreign key constraint is incorrectly formed")
show warnings;
Level Code Message
Warning 150 Create table '`test`.`t2`' with foreign key constraint failed. There is no index in the referenced table where the referenced columns appear as the first columns. Error close to foreign key a (a) references t1(a)) engine=innodb.
Error 1005 Can't create table `test`.`t2` (errno: 150 "Foreign key constraint is incorrectly formed")
Warning 1215 Cannot add foreign key constraint
drop table t1;
create table t1(a int not null primary key, b int) engine=innodb;
create table t2(a int, b int, constraint a foreign key a (a) references t1(a),
constraint a foreign key a (a) references t1(b)) engine=innodb;
ERROR HY000: Can't create table `test`.`t2` (errno: 150 "Foreign key constraint is incorrectly formed")
show warnings;
Level Code Message
Error 1005 Can't create table `test`.`t2` (errno: 150 "Foreign key constraint is incorrectly formed")
Warning 1215 Cannot add foreign key constraint
create table t2(a int, b int, constraint a foreign key a (a) references t1(a)) engine=innodb;
alter table t2 add constraint b foreign key (b) references t2(b);
ERROR HY000: Can't create table `test`.`#sql-temporary` (errno: 150 "Foreign key constraint is incorrectly formed")
show warnings;
Level Code Message
Warning 150 Alter table '`test`.`t2`' with foreign key constraint failed. There is no index in the referenced table where the referenced columns appear as the first columns. Error close to foreign key (b) references t2(b).
Error 1005 Can't create table `test`.`#sql-temporary` (errno: 150 "Foreign key constraint is incorrectly formed")
Warning 1215 Cannot add foreign key constraint
drop table t2, t1;
create table t1 (f1 integer primary key) engine=innodb;
alter table t1 add constraint c1 foreign key (f1) references t11(f1);
ERROR HY000: Can't create table `test`.`#sql-temporary` (errno: 150 "Foreign key constraint is incorrectly formed")
show warnings;
Level Code Message
Warning 150 Alter table `test`.`t1` with foreign key constraint failed. Referenced table `test`.`t11` not found in the data dictionary close to foreign key (f1) references t11(f1).
Error 1005 Can't create table `test`.`#sql-temporary` (errno: 150 "Foreign key constraint is incorrectly formed")
Warning 1215 Cannot add foreign key constraint
drop table t1;
create temporary table t1(a int not null primary key, b int, key(b)) engine=innodb;
create temporary table t2(a int, foreign key(a) references t1(a)) engine=innodb;
ERROR HY000: Can't create table `test`.`t2` (errno: 150 "Foreign key constraint is incorrectly formed")
show warnings;
Level Code Message
Warning 150 Create table `mysqld.1`.`t2` with foreign key constraint failed. Referenced table `mysqld.1`.`t1` not found in the data dictionary close to foreign key(a) references t1(a)) engine=innodb.
Error 1005 Can't create table `test`.`t2` (errno: 150 "Foreign key constraint is incorrectly formed")
Warning 1215 Cannot add foreign key constraint
alter table t1 add foreign key(b) references t1(a);
ERROR HY000: Can't create table `test`.`#sql-temporary` (errno: 150 "Foreign key constraint is incorrectly formed")
show warnings;
Level Code Message
Warning 150 Alter table `mysqld.1`.`t1` with foreign key constraint failed. Referenced table `mysqld.1`.`t1` not found in the data dictionary close to foreign key(b) references t1(a).
Error 1005 Can't create table `test`.`#sql-temporary` (errno: 150 "Foreign key constraint is incorrectly formed")
Warning 1215 Cannot add foreign key constraint
drop table t1;
create table t1(a int not null primary key, b int, key(b)) engine=innodb;
alter table t1 add foreign key(a,b) references t1(a);
ERROR 42000: Incorrect foreign key definition for 'foreign key without name': Key reference and table reference don't match
show warnings;
Level Code Message
Error 1239 Incorrect foreign key definition for 'foreign key without name': Key reference and table reference don't match
drop table t1;
create table t1(a int not null primary key, b int, key(b)) engine=innodb;
alter table t1 add foreign key(a) references t1(a,b);
ERROR 42000: Incorrect foreign key definition for 'foreign key without name': Key reference and table reference don't match
show warnings;
Level Code Message
Error 1239 Incorrect foreign key definition for 'foreign key without name': Key reference and table reference don't match
drop table t1;
create table t1 (f1 integer not null primary key) engine=innodb;
alter table t1 add constraint c1 foreign key (f1) references t1(f1) on update set null;
ERROR HY000: Can't create table `test`.`#sql-temporary` (errno: 150 "Foreign key constraint is incorrectly formed")
show warnings;
Level Code Message
Warning 150 Alter table `test`.`t1` with foreign key constraint failed. You have defined a SET NULL condition but column f1 is defined as NOT NULL in foreign key (f1) references t1(f1) on update set null close to on update set null.
Error 1005 Can't create table `test`.`#sql-temporary` (errno: 150 "Foreign key constraint is incorrectly formed")
Warning 1215 Cannot add foreign key constraint
create table t2(a int not null, foreign key(a) references t1(f1) on delete set null) engine=innodb;
ERROR HY000: Can't create table `test`.`t2` (errno: 150 "Foreign key constraint is incorrectly formed")
show warnings;
Level Code Message
Warning 150 Create table `test`.`t2` with foreign key constraint failed. You have defined a SET NULL condition but column a is defined as NOT NULL in foreign key(a) references t1(f1) on delete set null) engine=innodb close to on delete set null) engine=innodb.
Error 1005 Can't create table `test`.`t2` (errno: 150 "Foreign key constraint is incorrectly formed")
Warning 1215 Cannot add foreign key constraint
drop table t1;
create table t1 (id int not null primary key, f1 int, f2 int, key(f1)) engine=innodb;
create table t2(a char(20), key(a), foreign key(a) references t1(f1)) engine=innodb;
ERROR HY000: Can't create table `test`.`t2` (errno: 150 "Foreign key constraint is incorrectly formed")
show warnings;
Level Code Message
Warning 150 Create table `test`.`t2` with foreign key constraint failed. Field type or character set for column a does not mach referenced column f1 close to foreign key(a) references t1(f1)) engine=innodb
Error 1005 Can't create table `test`.`t2` (errno: 150 "Foreign key constraint is incorrectly formed")
Warning 1215 Cannot add foreign key constraint
drop table t1;

View file

@ -50,6 +50,8 @@ CONSTRAINT fk3 FOREIGN KEY (f3) REFERENCES t3 (id) ON DELETE CASCADE
ERROR HY000: Can't create table `test`.`t2` (errno: 150 "Foreign key constraint is incorrectly formed")
show warnings;
Level Code Message
Warning 150 Create table `test`.`t2` with foreign key constraint failed. Referenced table `test`.`t3` not found in the data dictionary close to FOREIGN KEY (f3) REFERENCES t3 (id) ON DELETE CASCADE
) ENGINE=InnoDB.
Error 1005 Can't create table `test`.`t2` (errno: 150 "Foreign key constraint is incorrectly formed")
Warning 1215 Cannot add foreign key constraint
CREATE TABLE t2 (
@ -63,6 +65,7 @@ ALTER TABLE t2 ADD CONSTRAINT fk3 FOREIGN KEY (f3) REFERENCES t3 (id) ON DELETE
ERROR HY000: Can't create table `test`.`#sql-temporary` (errno: 150 "Foreign key constraint is incorrectly formed")
show warnings;
Level Code Message
Warning 150 Alter table `test`.`t2` with foreign key constraint failed. Referenced table `test`.`t3` not found in the data dictionary close to FOREIGN KEY (f3) REFERENCES t3 (id) ON DELETE CASCADE.
Error 1005 Can't create table `test`.`#sql-temporary` (errno: 150 "Foreign key constraint is incorrectly formed")
Warning 1215 Cannot add foreign key constraint
drop table t2;

View file

@ -5,4 +5,4 @@ CREATE TABLE t1(id INT AUTO_INCREMENT PRIMARY KEY, msg VARCHAR(255), KEY msg_i(m
SET GLOBAL innodb_simulate_comp_failures = 25;
SELECT COUNT(*) FROM t1;
COUNT(*)
100000
10000

View file

@ -0,0 +1,26 @@
install plugin innodb soname 'ha_innodb';
Warnings:
Warning 1105 Cannot enable tc-log at run-time. XA features of InnoDB are disabled
create table t1(a int not null primary key) engine=innodb;
begin;
insert into t1 values(1);
flush tables;
uninstall plugin innodb;
select sleep(1);
sleep(1)
0
Warnings:
Warning 1620 Plugin is busy and will be uninstalled on shutdown
drop table t1;
install plugin innodb soname 'ha_innodb';
Warnings:
Warning 1105 Cannot enable tc-log at run-time. XA features of InnoDB are disabled
create table t2(a int not null primary key) engine=innodb;
insert into t2 values(1);
drop table t2;
uninstall plugin innodb;
select sleep(1);
sleep(1)
0
Warnings:
Warning 1620 Plugin is busy and will be uninstalled on shutdown

View file

@ -0,0 +1,21 @@
--source include/have_innodb.inc
--echo #
--echo # Bug #20762798 FK DDL: CRASH IN DICT_FOREIGN_REMOVE_FROM_CACHE
--echo #
create table t1(a int, b int, key(a),key(b))engine=innodb;
create table t2(a int, b int, key(a),key(b))engine=innodb;
alter table t2 add constraint b foreign key (b) references t1(a);
alter table t1 add constraint b1 foreign key (b) references t2(a);
--replace_regex /#sql-[0-9a-f_]*/#sql-temporary/
--error ER_CANT_CREATE_TABLE
alter table t2 add constraint b1 foreign key (b) references t1(a);
alter table t2 drop foreign key b;
alter table t1 drop foreign key b1;
drop table t2;
drop table t1;

View file

@ -0,0 +1,59 @@
--source include/have_innodb.inc
#
# MMDEV-8386: MariaDB creates very big tmp file and hangs on xtradb
#
drop database if exists moodle19;
create database moodle19;
use moodle19;
CREATE TABLE `mdl_course_modules` (
`id` bigint(10) NOT NULL AUTO_INCREMENT,
`course` bigint(10) NOT NULL DEFAULT '0',
`module` bigint(10) NOT NULL DEFAULT '0',
`instance` bigint(10) NOT NULL DEFAULT '0',
`section` bigint(10) NOT NULL DEFAULT '0',
`idnumber` varchar(100) DEFAULT NULL,
`added` bigint(10) NOT NULL DEFAULT '0',
`delay` varchar(10) NOT NULL DEFAULT '0',
`score` smallint(4) NOT NULL DEFAULT '0',
`indent` mediumint(5) NOT NULL DEFAULT '0',
`visible` tinyint(1) NOT NULL DEFAULT '1',
`checkboxesforprereqs` tinyint(1) NOT NULL DEFAULT '0',
`stylewhencomplete` varchar(200) DEFAULT '',
`checkboxforcomplete` tinyint(1) NOT NULL DEFAULT '0',
`stylewhenlocked` varchar(200) DEFAULT 'locked',
`visiblewhenlocked` tinyint(1) NOT NULL DEFAULT '1',
`visibleold` tinyint(1) NOT NULL DEFAULT '1',
`groupmode` smallint(4) NOT NULL DEFAULT '0',
`groupingid` bigint(10) NOT NULL DEFAULT '0',
`groupmembersonly` smallint(4) NOT NULL DEFAULT '0',
`completion` tinyint(1) NOT NULL DEFAULT '0',
`completiongradeitemnumber` bigint(10) DEFAULT NULL,
`completionview` tinyint(1) NOT NULL DEFAULT '0',
`completionexpected` bigint(10) NOT NULL DEFAULT '0',
`availablefrom` bigint(10) NOT NULL DEFAULT '0',
`availableuntil` bigint(10) NOT NULL DEFAULT '0',
`showavailability` tinyint(1) NOT NULL DEFAULT '0',
`showdescription` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `mdl_courmodu_vis_ix` (`visible`),
KEY `mdl_courmodu_cou_ix` (`course`),
KEY `mdl_courmodu_mod_ix` (`module`),
KEY `mdl_courmodu_ins_ix` (`instance`),
KEY `mdl_courmodu_idncou_ix` (`idnumber`,`course`),
KEY `mdl_courmodu_gro_ix` (`groupingid`)
) ENGINE=InnoDB AUTO_INCREMENT=447023 DEFAULT CHARSET=utf8 COMMENT='course_modules table retrofitted from MySQL';
let $num= 2701;
--disable_query_log
--echo # Inserting $num rows into the table...
while ($num)
{
eval INSERT INTO mdl_course_modules VALUES ($num,4,5,5,24,NULL,1141569781,'',0,0,1,0,'',0,'locked',1,1,0,0,0,0,NULL,0,0,0,0,0,0);
dec $num;
}
--enable_query_log
ALTER TABLE moodle19.mdl_course_modules ADD stefantest LONGTEXT CHARACTER SET utf8 COLLATE utf8_general_ci AFTER showdescription;
drop database moodle19;

View file

@ -0,0 +1,27 @@
--source include/have_innodb.inc
CREATE TABLE t1 (
`i1` INT(10) UNSIGNED NOT NULL,
`d1` TIMESTAMP NULL DEFAULT NULL
) ENGINE=innodb;
show create table t1;
INSERT INTO t1 (i1) VALUES (1), (2), (3), (4), (5);
select * from t1;
set sql_mode = 'STRICT_ALL_TABLES,NO_ZERO_DATE';
ALTER TABLE t1 CHANGE `d1` `d1` TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL;
drop table t1;
CREATE TABLE t1 (
`i1` INT(10) UNSIGNED NOT NULL,
`d1` TIMESTAMP NULL DEFAULT NULL
) ENGINE=innodb;
INSERT INTO t1 (i1) VALUES (1), (2), (3), (4), (5);
ALTER TABLE t1 CHANGE `d1` `d1` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP;
drop table t1;
set sql_mode = '';

View file

@ -0,0 +1,145 @@
--source include/have_innodb.inc
#
# MDEV-8524: Improve error messaging when there is duplicate key or foreign key names
#
CREATE TABLE t1 (
id int(11) NOT NULL PRIMARY KEY,
a int(11) NOT NULL,
b int(11) NOT NULL,
c int not null,
CONSTRAINT test FOREIGN KEY (b) REFERENCES t1 (id)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
#
# Below create table fails because constraint name test
# is reserved for above table.
#
--error 1005
CREATE TABLE t2 (
id int(11) NOT NULL PRIMARY KEY,
a int(11) NOT NULL,
b int(11) NOT NULL,
c int not null,
CONSTRAINT mytest FOREIGN KEY (c) REFERENCES t1(id),
CONSTRAINT test FOREIGN KEY (b) REFERENCES t2 (id)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
show warnings;
drop table t1;
#
# MDEV-6697: Improve foreign keys warnings/errors
#
#
# No index for referenced columns
#
create table t1(a int) engine=innodb;
--error 1005
create table t2(a int, constraint a foreign key a (a) references t1(a)) engine=innodb;
show warnings;
drop table t1;
create table t1(a int not null primary key, b int) engine=innodb;
--error 1005
create table t2(a int, b int, constraint a foreign key a (a) references t1(a),
constraint a foreign key a (a) references t1(b)) engine=innodb;
show warnings;
create table t2(a int, b int, constraint a foreign key a (a) references t1(a)) engine=innodb;
--replace_regex /#sql-[0-9a-f_]*`/#sql-temporary`/
--error 1005
alter table t2 add constraint b foreign key (b) references t2(b);
--replace_regex /#sql-[0-9a-f_]*`/#sql-temporary`/
show warnings;
drop table t2, t1;
#
# Referenced table does not exists
#
create table t1 (f1 integer primary key) engine=innodb;
--replace_regex /#sql-[0-9a-f_]*`/#sql-temporary`/
--error 1005
alter table t1 add constraint c1 foreign key (f1) references t11(f1);
--replace_regex /#sql-[0-9a-f_]*`/#sql-temporary`/
show warnings;
drop table t1;
#
# Foreign key on temporal tables
#
create temporary table t1(a int not null primary key, b int, key(b)) engine=innodb;
# remove echos and uncomment the commented when MDEV-8569 is fixed
--echo create temporary table t2(a int, foreign key(a) references t1(a)) engine=innodb;
--echo ERROR HY000: Can't create table `test`.`t2` (errno: 150 "Foreign key constraint is incorrectly formed")
--echo show warnings;
--echo Level Code Message
--echo Warning 150 Create table `mysqld.1`.`t2` with foreign key constraint failed. Referenced table `mysqld.1`.`t1` not found in the data dictionary close to foreign key(a) references t1(a)) engine=innodb.
--echo Error 1005 Can't create table `test`.`t2` (errno: 150 "Foreign key constraint is incorrectly formed")
--echo Warning 1215 Cannot add foreign key constraint
--echo alter table t1 add foreign key(b) references t1(a);
--echo ERROR HY000: Can't create table `test`.`#sql-temporary` (errno: 150 "Foreign key constraint is incorrectly formed")
--echo show warnings;
--echo Level Code Message
--echo Warning 150 Alter table `mysqld.1`.`t1` with foreign key constraint failed. Referenced table `mysqld.1`.`t1` not found in the data dictionary close to foreign key(b) references t1(a).
--echo Error 1005 Can't create table `test`.`#sql-temporary` (errno: 150 "Foreign key constraint is incorrectly formed")
--echo Warning 1215 Cannot add foreign key constraint
#--replace_regex /#sql-[0-9a-f_]*`/#sql-temporary`/
#--error 1005
#create temporary table t2(a int, foreign key(a) references t1(a)) engine=innodb;
#--replace_regex /#sql-[0-9a-f_]*`/#sql-temporary`/
#show warnings;
#--replace_regex /#sql-[0-9a-f_]*`/#sql-temporary`/
#--error 1005
#alter table t1 add foreign key(b) references t1(a);
#--replace_regex /#sql-[0-9a-f_]*`/#sql-temporary`/
#show warnings;
drop table t1;
#
# Column numbers do not match
#
create table t1(a int not null primary key, b int, key(b)) engine=innodb;
--replace_regex /#sql-[0-9a-f_]*`/#sql-temporary`/
--error 1239
alter table t1 add foreign key(a,b) references t1(a);
--replace_regex /#sql-[0-9a-f_]*`/#sql-temporary`/
show warnings;
drop table t1;
create table t1(a int not null primary key, b int, key(b)) engine=innodb;
--replace_regex /#sql-[0-9a-f_]*`/#sql-temporary`/
--error 1239
alter table t1 add foreign key(a) references t1(a,b);
--replace_regex /#sql-[0-9a-f_]*`/#sql-temporary`/
show warnings;
drop table t1;
#
# ON UPDATE/DELETE SET NULL on NOT NULL column
#
create table t1 (f1 integer not null primary key) engine=innodb;
--replace_regex /#sql-[0-9a-f_]*`/#sql-temporary`/
--error 1005
alter table t1 add constraint c1 foreign key (f1) references t1(f1) on update set null;
--replace_regex /#sql-[0-9a-f_]*`/#sql-temporary`/
show warnings;
--replace_regex /#sql-[0-9a-f_]*`/#sql-temporary`/
--error 1005
create table t2(a int not null, foreign key(a) references t1(f1) on delete set null) engine=innodb;
--replace_regex /#sql-[0-9a-f_]*`/#sql-temporary`/
show warnings;
drop table t1;
#
# Incorrect types
#
create table t1 (id int not null primary key, f1 int, f2 int, key(f1)) engine=innodb;
--replace_regex /#sql-[0-9a-f_]*`/#sql-temporary`/
--error 1005
create table t2(a char(20), key(a), foreign key(a) references t1(f1)) engine=innodb;
--replace_regex /#sql-[0-9a-f_]*`/#sql-temporary`/
show warnings;
drop table t1;

View file

@ -1,8 +1,8 @@
--source include/big_test.inc
# test takes too long with valgrind
--source include/not_valgrind.inc
--let $num_inserts = 100000
--let $num_ops = 30000
--let $num_inserts = 10000
--let $num_ops = 10000
--source suite/innodb/include/innodb_simulate_comp_failures.inc
# clean exit
--exit

View file

@ -0,0 +1,3 @@
--ignore-builtin-innodb
--loose-innodb

View file

@ -0,0 +1,58 @@
--source include/not_embedded.inc
--source include/not_windows.inc
if (!$HA_INNODB_SO) {
--skip Need InnoDB plugin
}
#
# MDEV-8474: InnoDB sets per-connection data unsafely
# Below test caused hang
#
install plugin innodb soname 'ha_innodb';
create table t1(a int not null primary key) engine=innodb;
connect (con1, localhost, root);
connection con1;
begin;
insert into t1 values(1);
connection default;
flush tables;
send uninstall plugin innodb;
connection con1;
select sleep(1);
disconnect con1;
connection default;
reap;
--source include/restart_mysqld.inc
drop table t1;
#
# Another test that caused hang.
#
connect (con1, localhost, root);
connection con1;
install plugin innodb soname 'ha_innodb';
create table t2(a int not null primary key) engine=innodb;
insert into t2 values(1);
drop table t2;
connection default;
send uninstall plugin innodb;
connection con1;
select sleep(1);
disconnect con1;
connection default;
reap;
--source include/restart_mysqld.inc

View file

@ -0,0 +1,33 @@
#
# 18075170 - sql node restart required to avoid deadlock after
# restore
#
CREATE TABLE t1 (id INT) ENGINE=NDBCluster;
CREATE TABLE t2 (id INT) ENGINE=NDBCluster;
INSERT INTO t1 VALUES (1);
INSERT INTO t2 VALUES (1);
DROP TABLE t1;
DROP TABLE t2;
SET autocommit = 0;
SELECT * FROM t1;
id
1
SELECT * FROM t2;
id
1
ROLLBACK;
SET autocommit = 1;
drop table t1;
drop table t2;
SET autocommit = 0;
SELECT * FROM t1;
id
1
SELECT * FROM t2;
id
1
ALTER TABLE t1 ADD val INT;
ROLLBACK;
SET autocommit = 1;
drop table t1;
drop table t2;

View file

@ -0,0 +1,70 @@
-- source include/have_ndb.inc
-- source include/count_sessions.inc
--echo #
--echo # 18075170 - sql node restart required to avoid deadlock after
--echo # restore
--echo #
# Test Auto Discover option within a transaction
# and make sure the transaction is not broken.
CREATE TABLE t1 (id INT) ENGINE=NDBCluster;
CREATE TABLE t2 (id INT) ENGINE=NDBCluster;
INSERT INTO t1 VALUES (1);
INSERT INTO t2 VALUES (1);
-- source include/ndb_backup.inc
DROP TABLE t1;
DROP TABLE t2;
-- source include/ndb_restore_master.inc
SET autocommit = 0;
SELECT * FROM t1;
# Without fix below select was resulting in DEADLOCK error. With fix select
# should succeed.
SELECT * FROM t2;
ROLLBACK;
SET autocommit = 1;
drop table t1;
drop table t2;
#
# Checking lock preservation in transaction
#
# Using existing backup to create the scenario. Tables are deleted as part of
# above test cleanup. Thus restoring the backup will bring the system to
# required state.
-- source include/ndb_restore_master.inc
SET autocommit = 0;
SELECT * FROM t1;
SELECT * FROM t2;
connect(con2, localhost, root);
--SEND ALTER TABLE t1 ADD val INT
connection default;
# Alter from con2 will be in waiting state as there is a lock on t1 from
# default connection due to active transaction. We check for this condition
# then releasing the lock by rollbacking active transaction.
let $wait_condition=
SELECT count(*) = 1 FROM information_schema.processlist WHERE state
LIKE "Waiting%" AND info = "ALTER TABLE t1 ADD val INT";
--source include/wait_condition.inc
ROLLBACK;
SET autocommit = 1;
connection con2;
--REAP
disconnect con2;
connection default;
drop table t1;
drop table t2;
# Wait till all disconnects are completed
-- source include/wait_until_count_sessions.inc

View file

@ -16,12 +16,12 @@ NULL NULL NULL 1 2 3 NULL NULL
SELECT SCHEMA_NAME, DIGEST_TEXT, COUNT_STAR
FROM performance_schema.events_statements_summary_by_digest;
SCHEMA_NAME DIGEST_TEXT COUNT_STAR
test TRUNCATE TABLE performance_schema . events_statements_summary_by_digest 1
test TRUNCATE TABLE `performance_schema` . `events_statements_summary_by_digest` 1
test SELECT ? 1
test SELECT ? FROM DUAL 1
test SELECT ?, ... 2
test SELECT ? IS NULL 1
test SELECT ? IS NOT NULL 1
test SELECT ? IS NULL , ? IS NULL , ? IS NOT NULL , ? IS NOT NULL 1
test CREATE TABLE foo ( a INTEGER DEFAULT ? , b INTEGER NOT NULL DEFAULT ? , c INTEGER NOT NULL ) 1
test DROP TABLE foo 1
test CREATE TABLE `foo` ( `a` INTEGER DEFAULT ? , `b` INTEGER NOT NULL DEFAULT ? , `c` INTEGER NOT NULL ) 1
test DROP TABLE `foo` 1

View file

@ -113,7 +113,7 @@ SELECT SCHEMA_NAME, DIGEST_TEXT, COUNT_STAR, SUM_ROWS_AFFECTED, SUM_WARNINGS,
SUM_ERRORS FROM performance_schema.events_statements_summary_by_digest;
SCHEMA_NAME DIGEST_TEXT COUNT_STAR SUM_ROWS_AFFECTED SUM_WARNINGS SUM_ERRORS
NULL NULL 55 32 1 2
statements_digest TRUNCATE TABLE performance_schema . events_statements_summary_by_digest 1 0 0 0
statements_digest TRUNCATE TABLE `performance_schema` . `events_statements_summary_by_digest` 1 0 0 0
SHOW VARIABLES LIKE "performance_schema_digests_size";
Variable_name Value
performance_schema_digests_size 2

View file

@ -20,11 +20,13 @@ lock tables performance_schema.setup_instruments write;
connection default;
select event_name,
left(source, locate(":", source)) as short_source,
timer_end, timer_wait, operation
if(timer_end IS NULL, NULL, "SET") as timer_end,
if(timer_wait IS NULL, NULL, "SET") as timer_wait,
operation
from performance_schema.events_waits_current
where event_name like "wait/synch/cond/sql/MDL_context::COND_wait_status";
event_name short_source timer_end timer_wait operation
wait/synch/cond/sql/MDL_context::COND_wait_status mdl.cc: NULL NULL timed_wait
wait/synch/cond/sql/MDL_context::COND_wait_status mdl.cc: SET SET timed_wait
unlock tables;
update performance_schema.setup_instruments set enabled='NO';
update performance_schema.setup_instruments set enabled='YES';

View file

@ -110,6 +110,7 @@ performance_schema_events_waits_history_size 10
performance_schema_hosts_size 100
performance_schema_max_cond_classes 80
performance_schema_max_cond_instances 1000
performance_schema_max_digest_length 1024
performance_schema_max_file_classes 50
performance_schema_max_file_handles 32768
performance_schema_max_file_instances 10000

View file

@ -38,6 +38,7 @@ performance_schema_events_waits_history_size 10
performance_schema_hosts_size 100
performance_schema_max_cond_classes 80
performance_schema_max_cond_instances 1000
performance_schema_max_digest_length 1024
performance_schema_max_file_classes 50
performance_schema_max_file_handles 32768
performance_schema_max_file_instances 10000

View file

@ -37,7 +37,7 @@ select digest_text, count_star
from performance_schema.events_statements_summary_by_digest
where digest_text like "%in_%_digest%";
digest_text count_star
SELECT ? AS in_master_digest 1
SELECT ? AS `in_master_digest` 1
insert into test.marker values (2);
**** On Slave ****
select * from test.marker;
@ -64,7 +64,7 @@ select digest_text, count_star
from performance_schema.events_statements_summary_by_digest
where digest_text like "%in_%_digest%";
digest_text count_star
SELECT ? AS in_slave_digest 1
SELECT ? AS `in_slave_digest` 1
**** On Master ****
delete from performance_schema.setup_objects
where object_schema='master';

View file

@ -98,20 +98,20 @@ drop database marker2_db;
select thread_id, event_id, rpad(event_name, 28, ' ') event_name, rpad(current_schema, 10, ' ') current_schema, rpad(digest_text, 72, ' ') digest_text, sql_text from performance_schema.events_statements_history_long
where sql_text like '%marker%' order by event_id;
thread_id event_id event_name current_schema digest_text sql_text
[THREAD_ID] [EVENT_ID] statement/sql/create_db test CREATE SCHEMA marker1_db create database marker1_db
[THREAD_ID] [EVENT_ID] statement/sql/create_db test CREATE SCHEMA marker2_db create database marker2_db
[THREAD_ID] [EVENT_ID] statement/sql/create_table test CREATE TABLE marker1_db . table1 ( s1 INTEGER ) ENGINE = innodb create table marker1_db.table1 (s1 int) engine=innodb
[THREAD_ID] [EVENT_ID] statement/sql/create_table test CREATE TABLE marker2_db . table1 ( s1 INTEGER ) ENGINE = innodb create table marker2_db.table1 (s1 int) engine=innodb
[THREAD_ID] [EVENT_ID] statement/sql/create_table test CREATE TABLE marker2_db . table2 ( s1 INTEGER ) ENGINE = innodb create table marker2_db.table2 (s1 int) engine=innodb
[THREAD_ID] [EVENT_ID] statement/sql/insert test INSERT INTO marker1_db . table1 VALUES (?) /* , ... */ insert into marker1_db.table1 values (1), (2), (3)
[THREAD_ID] [EVENT_ID] statement/sql/insert test INSERT INTO marker2_db . table1 VALUES (?) /* , ... */ insert into marker2_db.table1 values (1), (2), (3)
[THREAD_ID] [EVENT_ID] statement/sql/alter_table test ALTER TABLE marker1_db . table1 ADD COLUMN ( s2 VARCHARACTER (?) ) alter table marker1_db.table1 add column (s2 varchar(32))
[THREAD_ID] [EVENT_ID] statement/sql/insert test INSERT INTO marker1_db . table1 VALUES (...) /* , ... */ insert into marker1_db.table1 values (4, 'four'), (5, 'five'), (6, 'six')
[THREAD_ID] [EVENT_ID] statement/sql/update test UPDATE marker1_db . table1 SET s1 = s1 + ? update marker1_db.table1 set s1 = s1 + 1
[THREAD_ID] [EVENT_ID] statement/sql/insert test INSERT INTO marker1_db . table1 VALUES (...) /* , ... */ insert into marker1_db.table1 values (7, 'seven'), (8, 'eight'), (9, 'nine')
[THREAD_ID] [EVENT_ID] statement/sql/delete test DELETE FROM marker1_db . table1 WHERE s1 > ? delete from marker1_db.table1 where s1 > 4
[THREAD_ID] [EVENT_ID] statement/sql/drop_table test DROP TABLE marker2_db . table1 drop table marker2_db.table1
[THREAD_ID] [EVENT_ID] statement/sql/drop_db test DROP SCHEMA marker2_db drop database marker2_db
[THREAD_ID] [EVENT_ID] statement/sql/create_db test CREATE SCHEMA `marker1_db` create database marker1_db
[THREAD_ID] [EVENT_ID] statement/sql/create_db test CREATE SCHEMA `marker2_db` create database marker2_db
[THREAD_ID] [EVENT_ID] statement/sql/create_table test CREATE TABLE `marker1_db` . `table1` ( `s1` INTEGER ) ENGINE = `innodb` create table marker1_db.table1 (s1 int) engine=innodb
[THREAD_ID] [EVENT_ID] statement/sql/create_table test CREATE TABLE `marker2_db` . `table1` ( `s1` INTEGER ) ENGINE = `innodb` create table marker2_db.table1 (s1 int) engine=innodb
[THREAD_ID] [EVENT_ID] statement/sql/create_table test CREATE TABLE `marker2_db` . `table2` ( `s1` INTEGER ) ENGINE = `innodb` create table marker2_db.table2 (s1 int) engine=innodb
[THREAD_ID] [EVENT_ID] statement/sql/insert test INSERT INTO `marker1_db` . `table1` VALUES (?) /* , ... */ insert into marker1_db.table1 values (1), (2), (3)
[THREAD_ID] [EVENT_ID] statement/sql/insert test INSERT INTO `marker2_db` . `table1` VALUES (?) /* , ... */ insert into marker2_db.table1 values (1), (2), (3)
[THREAD_ID] [EVENT_ID] statement/sql/alter_table test ALTER TABLE `marker1_db` . `table1` ADD COLUMN ( `s2` VARCHARACTER (?) ) alter table marker1_db.table1 add column (s2 varchar(32))
[THREAD_ID] [EVENT_ID] statement/sql/insert test INSERT INTO `marker1_db` . `table1` VALUES (...) /* , ... */ insert into marker1_db.table1 values (4, 'four'), (5, 'five'), (6, 'six')
[THREAD_ID] [EVENT_ID] statement/sql/update test UPDATE `marker1_db` . `table1` SET `s1` = `s1` + ? update marker1_db.table1 set s1 = s1 + 1
[THREAD_ID] [EVENT_ID] statement/sql/insert test INSERT INTO `marker1_db` . `table1` VALUES (...) /* , ... */ insert into marker1_db.table1 values (7, 'seven'), (8, 'eight'), (9, 'nine')
[THREAD_ID] [EVENT_ID] statement/sql/delete test DELETE FROM `marker1_db` . `table1` WHERE `s1` > ? delete from marker1_db.table1 where s1 > 4
[THREAD_ID] [EVENT_ID] statement/sql/drop_table test DROP TABLE `marker2_db` . `table1` drop table marker2_db.table1
[THREAD_ID] [EVENT_ID] statement/sql/drop_db test DROP SCHEMA `marker2_db` drop database marker2_db
#
# STEP 4 - REPLICATE STATEMENT EVENTS ON MASTER TO SLAVE
@ -138,39 +138,39 @@ where (thread_id=@my_thread_id and digest_text like '%marker%'));
select thread_id, event_id, rpad(event_name, 28, ' ') event_name, rpad(current_schema, 10, ' ') current_schema, rpad(digest_text, 72, ' ') digest_text, sql_text from master_events_statements_history_long order by event_id;
thread_id event_id event_name current_schema digest_text sql_text
[THREAD_ID] [EVENT_ID] statement/sql/create_db test CREATE SCHEMA marker1_db create database marker1_db
[THREAD_ID] [EVENT_ID] statement/sql/create_db test CREATE SCHEMA marker2_db create database marker2_db
[THREAD_ID] [EVENT_ID] statement/sql/create_table test CREATE TABLE marker1_db . table1 ( s1 INTEGER ) ENGINE = innodb create table marker1_db.table1 (s1 int) engine=innodb
[THREAD_ID] [EVENT_ID] statement/sql/create_table test CREATE TABLE marker2_db . table1 ( s1 INTEGER ) ENGINE = innodb create table marker2_db.table1 (s1 int) engine=innodb
[THREAD_ID] [EVENT_ID] statement/sql/create_table test CREATE TABLE marker2_db . table2 ( s1 INTEGER ) ENGINE = innodb create table marker2_db.table2 (s1 int) engine=innodb
[THREAD_ID] [EVENT_ID] statement/sql/insert test INSERT INTO marker1_db . table1 VALUES (?) /* , ... */ insert into marker1_db.table1 values (1), (2), (3)
[THREAD_ID] [EVENT_ID] statement/sql/insert test INSERT INTO marker2_db . table1 VALUES (?) /* , ... */ insert into marker2_db.table1 values (1), (2), (3)
[THREAD_ID] [EVENT_ID] statement/sql/alter_table test ALTER TABLE marker1_db . table1 ADD COLUMN ( s2 VARCHARACTER (?) ) alter table marker1_db.table1 add column (s2 varchar(32))
[THREAD_ID] [EVENT_ID] statement/sql/insert test INSERT INTO marker1_db . table1 VALUES (...) /* , ... */ insert into marker1_db.table1 values (4, 'four'), (5, 'five'), (6, 'six')
[THREAD_ID] [EVENT_ID] statement/sql/update test UPDATE marker1_db . table1 SET s1 = s1 + ? update marker1_db.table1 set s1 = s1 + 1
[THREAD_ID] [EVENT_ID] statement/sql/insert test INSERT INTO marker1_db . table1 VALUES (...) /* , ... */ insert into marker1_db.table1 values (7, 'seven'), (8, 'eight'), (9, 'nine')
[THREAD_ID] [EVENT_ID] statement/sql/delete test DELETE FROM marker1_db . table1 WHERE s1 > ? delete from marker1_db.table1 where s1 > 4
[THREAD_ID] [EVENT_ID] statement/sql/drop_table test DROP TABLE marker2_db . table1 drop table marker2_db.table1
[THREAD_ID] [EVENT_ID] statement/sql/drop_db test DROP SCHEMA marker2_db drop database marker2_db
[THREAD_ID] [EVENT_ID] statement/sql/create_db test CREATE SCHEMA `marker1_db` create database marker1_db
[THREAD_ID] [EVENT_ID] statement/sql/create_db test CREATE SCHEMA `marker2_db` create database marker2_db
[THREAD_ID] [EVENT_ID] statement/sql/create_table test CREATE TABLE `marker1_db` . `table1` ( `s1` INTEGER ) ENGINE = `innodb` create table marker1_db.table1 (s1 int) engine=innodb
[THREAD_ID] [EVENT_ID] statement/sql/create_table test CREATE TABLE `marker2_db` . `table1` ( `s1` INTEGER ) ENGINE = `innodb` create table marker2_db.table1 (s1 int) engine=innodb
[THREAD_ID] [EVENT_ID] statement/sql/create_table test CREATE TABLE `marker2_db` . `table2` ( `s1` INTEGER ) ENGINE = `innodb` create table marker2_db.table2 (s1 int) engine=innodb
[THREAD_ID] [EVENT_ID] statement/sql/insert test INSERT INTO `marker1_db` . `table1` VALUES (?) /* , ... */ insert into marker1_db.table1 values (1), (2), (3)
[THREAD_ID] [EVENT_ID] statement/sql/insert test INSERT INTO `marker2_db` . `table1` VALUES (?) /* , ... */ insert into marker2_db.table1 values (1), (2), (3)
[THREAD_ID] [EVENT_ID] statement/sql/alter_table test ALTER TABLE `marker1_db` . `table1` ADD COLUMN ( `s2` VARCHARACTER (?) ) alter table marker1_db.table1 add column (s2 varchar(32))
[THREAD_ID] [EVENT_ID] statement/sql/insert test INSERT INTO `marker1_db` . `table1` VALUES (...) /* , ... */ insert into marker1_db.table1 values (4, 'four'), (5, 'five'), (6, 'six')
[THREAD_ID] [EVENT_ID] statement/sql/update test UPDATE `marker1_db` . `table1` SET `s1` = `s1` + ? update marker1_db.table1 set s1 = s1 + 1
[THREAD_ID] [EVENT_ID] statement/sql/insert test INSERT INTO `marker1_db` . `table1` VALUES (...) /* , ... */ insert into marker1_db.table1 values (7, 'seven'), (8, 'eight'), (9, 'nine')
[THREAD_ID] [EVENT_ID] statement/sql/delete test DELETE FROM `marker1_db` . `table1` WHERE `s1` > ? delete from marker1_db.table1 where s1 > 4
[THREAD_ID] [EVENT_ID] statement/sql/drop_table test DROP TABLE `marker2_db` . `table1` drop table marker2_db.table1
[THREAD_ID] [EVENT_ID] statement/sql/drop_db test DROP SCHEMA `marker2_db` drop database marker2_db
*** List statement events on slave
select thread_id, event_id, rpad(event_name, 28, ' ') event_name, rpad(current_schema, 10, ' ') current_schema, rpad(digest_text, 72, ' ') digest_text, sql_text from performance_schema.events_statements_history_long
where thread_id = @slave_thread_id and sql_text like '%marker%' order by event_id;
thread_id event_id event_name current_schema digest_text sql_text
[THREAD_ID] [EVENT_ID] statement/sql/create_db marker1_db CREATE SCHEMA marker1_db create database marker1_db
[THREAD_ID] [EVENT_ID] statement/sql/create_db marker2_db CREATE SCHEMA marker2_db create database marker2_db
[THREAD_ID] [EVENT_ID] statement/sql/create_table test CREATE TABLE marker1_db . table1 ( s1 INTEGER ) ENGINE = innodb create table marker1_db.table1 (s1 int) engine=innodb
[THREAD_ID] [EVENT_ID] statement/sql/create_table test CREATE TABLE marker2_db . table1 ( s1 INTEGER ) ENGINE = innodb create table marker2_db.table1 (s1 int) engine=innodb
[THREAD_ID] [EVENT_ID] statement/sql/create_table test CREATE TABLE marker2_db . table2 ( s1 INTEGER ) ENGINE = innodb create table marker2_db.table2 (s1 int) engine=innodb
[THREAD_ID] [EVENT_ID] statement/sql/insert test INSERT INTO marker1_db . table1 VALUES (?) /* , ... */ insert into marker1_db.table1 values (1), (2), (3)
[THREAD_ID] [EVENT_ID] statement/sql/insert test INSERT INTO marker2_db . table1 VALUES (?) /* , ... */ insert into marker2_db.table1 values (1), (2), (3)
[THREAD_ID] [EVENT_ID] statement/sql/alter_table test ALTER TABLE marker1_db . table1 ADD COLUMN ( s2 VARCHARACTER (?) ) alter table marker1_db.table1 add column (s2 varchar(32))
[THREAD_ID] [EVENT_ID] statement/sql/insert test INSERT INTO marker1_db . table1 VALUES (...) /* , ... */ insert into marker1_db.table1 values (4, 'four'), (5, 'five'), (6, 'six')
[THREAD_ID] [EVENT_ID] statement/sql/update test UPDATE marker1_db . table1 SET s1 = s1 + ? update marker1_db.table1 set s1 = s1 + 1
[THREAD_ID] [EVENT_ID] statement/sql/delete test DELETE FROM marker1_db . table1 WHERE s1 > ? delete from marker1_db.table1 where s1 > 4
[THREAD_ID] [EVENT_ID] statement/sql/create_db marker1_db CREATE SCHEMA `marker1_db` create database marker1_db
[THREAD_ID] [EVENT_ID] statement/sql/create_db marker2_db CREATE SCHEMA `marker2_db` create database marker2_db
[THREAD_ID] [EVENT_ID] statement/sql/create_table test CREATE TABLE `marker1_db` . `table1` ( `s1` INTEGER ) ENGINE = `innodb` create table marker1_db.table1 (s1 int) engine=innodb
[THREAD_ID] [EVENT_ID] statement/sql/create_table test CREATE TABLE `marker2_db` . `table1` ( `s1` INTEGER ) ENGINE = `innodb` create table marker2_db.table1 (s1 int) engine=innodb
[THREAD_ID] [EVENT_ID] statement/sql/create_table test CREATE TABLE `marker2_db` . `table2` ( `s1` INTEGER ) ENGINE = `innodb` create table marker2_db.table2 (s1 int) engine=innodb
[THREAD_ID] [EVENT_ID] statement/sql/insert test INSERT INTO `marker1_db` . `table1` VALUES (?) /* , ... */ insert into marker1_db.table1 values (1), (2), (3)
[THREAD_ID] [EVENT_ID] statement/sql/insert test INSERT INTO `marker2_db` . `table1` VALUES (?) /* , ... */ insert into marker2_db.table1 values (1), (2), (3)
[THREAD_ID] [EVENT_ID] statement/sql/alter_table test ALTER TABLE `marker1_db` . `table1` ADD COLUMN ( `s2` VARCHARACTER (?) ) alter table marker1_db.table1 add column (s2 varchar(32))
[THREAD_ID] [EVENT_ID] statement/sql/insert test INSERT INTO `marker1_db` . `table1` VALUES (...) /* , ... */ insert into marker1_db.table1 values (4, 'four'), (5, 'five'), (6, 'six')
[THREAD_ID] [EVENT_ID] statement/sql/update test UPDATE `marker1_db` . `table1` SET `s1` = `s1` + ? update marker1_db.table1 set s1 = s1 + 1
[THREAD_ID] [EVENT_ID] statement/sql/delete test DELETE FROM `marker1_db` . `table1` WHERE `s1` > ? delete from marker1_db.table1 where s1 > 4
[THREAD_ID] [EVENT_ID] statement/sql/drop_table test DROP TABLE `marker2_db` . `table1` DROP TABLE `marker2_db`.`table1` /* generated by server */
[THREAD_ID] [EVENT_ID] statement/sql/drop_db marker2_db DROP SCHEMA marker2_db drop database marker2_db
[THREAD_ID] [EVENT_ID] statement/sql/drop_db marker2_db DROP SCHEMA `marker2_db` drop database marker2_db
*** Compare master and slave events
@ -190,7 +190,6 @@ where t1.thread_id = @slave_thread_id and
sql_text like '%marker%' and
not exists (select * from master_events_statements_history_long t2 where t2.digest = t1.digest);
thread_id event_id event_name digest digest_text sql_text
[THREAD_ID] [EVENT_ID] statement/sql/drop_table [DIGEST] DROP TABLE `marker2_db` . `table1` DROP TABLE `marker2_db`.`table1` /* generated by server */
#
# STEP 6 - DISABLE REPLICATED STATEMENT EVENTS ON SLAVE

View file

@ -23,6 +23,7 @@ performance_schema_events_waits_history_size 10
performance_schema_hosts_size 100
performance_schema_max_cond_classes 80
performance_schema_max_cond_instances 3504
performance_schema_max_digest_length 1024
performance_schema_max_file_classes 50
performance_schema_max_file_handles 32768
performance_schema_max_file_instances 7693

View file

@ -23,6 +23,7 @@ performance_schema_events_waits_history_size 10
performance_schema_hosts_size 100
performance_schema_max_cond_classes 80
performance_schema_max_cond_instances 10900
performance_schema_max_digest_length 1024
performance_schema_max_file_classes 50
performance_schema_max_file_handles 32768
performance_schema_max_file_instances 23385

View file

@ -23,6 +23,7 @@ performance_schema_events_waits_history_size 5
performance_schema_hosts_size 20
performance_schema_max_cond_classes 80
performance_schema_max_cond_instances 612
performance_schema_max_digest_length 1024
performance_schema_max_file_classes 50
performance_schema_max_file_handles 32768
performance_schema_max_file_instances 1556

View file

@ -23,6 +23,7 @@ performance_schema_events_waits_history_size 10
performance_schema_hosts_size 100
performance_schema_max_cond_classes 80
performance_schema_max_cond_instances 1079
performance_schema_max_digest_length 1024
performance_schema_max_file_classes 50
performance_schema_max_file_handles 32768
performance_schema_max_file_instances 1754

View file

@ -14,6 +14,7 @@ performance_schema_events_waits_history_size -1
performance_schema_hosts_size -1
performance_schema_max_cond_classes 80
performance_schema_max_cond_instances -1
performance_schema_max_digest_length 1024
performance_schema_max_file_classes 50
performance_schema_max_file_handles 32768
performance_schema_max_file_instances -1

View file

@ -85,6 +85,7 @@ performance_schema_events_waits_history_size 10
performance_schema_hosts_size 100
performance_schema_max_cond_classes 80
performance_schema_max_cond_instances 1000
performance_schema_max_digest_length 1024
performance_schema_max_file_classes 50
performance_schema_max_file_handles 32768
performance_schema_max_file_instances 10000

View file

@ -85,6 +85,7 @@ performance_schema_events_waits_history_size 10
performance_schema_hosts_size 100
performance_schema_max_cond_classes 80
performance_schema_max_cond_instances 1000
performance_schema_max_digest_length 1024
performance_schema_max_file_classes 50
performance_schema_max_file_handles 32768
performance_schema_max_file_instances 10000

View file

@ -85,6 +85,7 @@ performance_schema_events_waits_history_size 10
performance_schema_hosts_size 100
performance_schema_max_cond_classes 80
performance_schema_max_cond_instances 1000
performance_schema_max_digest_length 1024
performance_schema_max_file_classes 50
performance_schema_max_file_handles 32768
performance_schema_max_file_instances 10000

View file

@ -85,6 +85,7 @@ performance_schema_events_waits_history_size 10
performance_schema_hosts_size 100
performance_schema_max_cond_classes 80
performance_schema_max_cond_instances 1000
performance_schema_max_digest_length 1024
performance_schema_max_file_classes 50
performance_schema_max_file_handles 32768
performance_schema_max_file_instances 10000

View file

@ -85,6 +85,7 @@ performance_schema_events_waits_history_size 10
performance_schema_hosts_size 100
performance_schema_max_cond_classes 80
performance_schema_max_cond_instances 1000
performance_schema_max_digest_length 1024
performance_schema_max_file_classes 50
performance_schema_max_file_handles 32768
performance_schema_max_file_instances 10000

View file

@ -85,6 +85,7 @@ performance_schema_events_waits_history_size 10
performance_schema_hosts_size 100
performance_schema_max_cond_classes 80
performance_schema_max_cond_instances 1000
performance_schema_max_digest_length 1024
performance_schema_max_file_classes 50
performance_schema_max_file_handles 32768
performance_schema_max_file_instances 10000

View file

@ -85,6 +85,7 @@ performance_schema_events_waits_history_size 10
performance_schema_hosts_size 100
performance_schema_max_cond_classes 0
performance_schema_max_cond_instances 1000
performance_schema_max_digest_length 1024
performance_schema_max_file_classes 50
performance_schema_max_file_handles 32768
performance_schema_max_file_instances 10000

View file

@ -85,6 +85,7 @@ performance_schema_events_waits_history_size 10
performance_schema_hosts_size 100
performance_schema_max_cond_classes 80
performance_schema_max_cond_instances 0
performance_schema_max_digest_length 1024
performance_schema_max_file_classes 50
performance_schema_max_file_handles 32768
performance_schema_max_file_instances 10000

View file

@ -85,6 +85,7 @@ performance_schema_events_waits_history_size 10
performance_schema_hosts_size 100
performance_schema_max_cond_classes 80
performance_schema_max_cond_instances 1000
performance_schema_max_digest_length 1024
performance_schema_max_file_classes 0
performance_schema_max_file_handles 32768
performance_schema_max_file_instances 10000

View file

@ -85,6 +85,7 @@ performance_schema_events_waits_history_size 10
performance_schema_hosts_size 100
performance_schema_max_cond_classes 80
performance_schema_max_cond_instances 1000
performance_schema_max_digest_length 1024
performance_schema_max_file_classes 50
performance_schema_max_file_handles 32768
performance_schema_max_file_instances 0

View file

@ -85,6 +85,7 @@ performance_schema_events_waits_history_size 10
performance_schema_hosts_size 0
performance_schema_max_cond_classes 80
performance_schema_max_cond_instances 1000
performance_schema_max_digest_length 1024
performance_schema_max_file_classes 50
performance_schema_max_file_handles 32768
performance_schema_max_file_instances 10000

View file

@ -85,6 +85,7 @@ performance_schema_events_waits_history_size 10
performance_schema_hosts_size 100
performance_schema_max_cond_classes 80
performance_schema_max_cond_instances 1000
performance_schema_max_digest_length 1024
performance_schema_max_file_classes 50
performance_schema_max_file_handles 32768
performance_schema_max_file_instances 10000

View file

@ -85,6 +85,7 @@ performance_schema_events_waits_history_size 10
performance_schema_hosts_size 100
performance_schema_max_cond_classes 80
performance_schema_max_cond_instances 1000
performance_schema_max_digest_length 1024
performance_schema_max_file_classes 50
performance_schema_max_file_handles 32768
performance_schema_max_file_instances 10000

View file

@ -85,6 +85,7 @@ performance_schema_events_waits_history_size 10
performance_schema_hosts_size 100
performance_schema_max_cond_classes 80
performance_schema_max_cond_instances 1000
performance_schema_max_digest_length 1024
performance_schema_max_file_classes 50
performance_schema_max_file_handles 32768
performance_schema_max_file_instances 10000

View file

@ -85,6 +85,7 @@ performance_schema_events_waits_history_size 10
performance_schema_hosts_size 100
performance_schema_max_cond_classes 80
performance_schema_max_cond_instances 1000
performance_schema_max_digest_length 1024
performance_schema_max_file_classes 50
performance_schema_max_file_handles 32768
performance_schema_max_file_instances 10000

View file

@ -85,6 +85,7 @@ performance_schema_events_waits_history_size 10
performance_schema_hosts_size 100
performance_schema_max_cond_classes 80
performance_schema_max_cond_instances 1000
performance_schema_max_digest_length 1024
performance_schema_max_file_classes 50
performance_schema_max_file_handles 32768
performance_schema_max_file_instances 10000

View file

@ -85,6 +85,7 @@ performance_schema_events_waits_history_size 10
performance_schema_hosts_size 100
performance_schema_max_cond_classes 80
performance_schema_max_cond_instances 1000
performance_schema_max_digest_length 1024
performance_schema_max_file_classes 50
performance_schema_max_file_handles 32768
performance_schema_max_file_instances 10000

View file

@ -85,6 +85,7 @@ performance_schema_events_waits_history_size 10
performance_schema_hosts_size 100
performance_schema_max_cond_classes 80
performance_schema_max_cond_instances 1000
performance_schema_max_digest_length 1024
performance_schema_max_file_classes 50
performance_schema_max_file_handles 32768
performance_schema_max_file_instances 10000

View file

@ -85,6 +85,7 @@ performance_schema_events_waits_history_size 10
performance_schema_hosts_size 100
performance_schema_max_cond_classes 80
performance_schema_max_cond_instances 1000
performance_schema_max_digest_length 1024
performance_schema_max_file_classes 50
performance_schema_max_file_handles 32768
performance_schema_max_file_instances 10000

View file

@ -85,6 +85,7 @@ performance_schema_events_waits_history_size 10
performance_schema_hosts_size 100
performance_schema_max_cond_classes 80
performance_schema_max_cond_instances 1000
performance_schema_max_digest_length 1024
performance_schema_max_file_classes 50
performance_schema_max_file_handles 32768
performance_schema_max_file_instances 10000

View file

@ -85,6 +85,7 @@ performance_schema_events_waits_history_size 10
performance_schema_hosts_size 100
performance_schema_max_cond_classes 80
performance_schema_max_cond_instances 1000
performance_schema_max_digest_length 1024
performance_schema_max_file_classes 50
performance_schema_max_file_handles 32768
performance_schema_max_file_instances 10000

Some files were not shown because too many files have changed in this diff Show more