mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge branch 'mysql-5.1' into mysql-5.5
This commit is contained in:
@ -2,6 +2,10 @@ set names utf8;
|
||||
create table t1 (a varchar(2) character set cp1250)
|
||||
partition by list columns (a)
|
||||
( partition p0 values in (0x81));
|
||||
Warnings:
|
||||
Warning 1300 Invalid cp1250 character string: '81'
|
||||
Warning 1300 Invalid cp1250 character string: '81'
|
||||
Warning 1300 Invalid cp1250 character string: '81'
|
||||
show create table t1;
|
||||
Table Create Table
|
||||
t1 CREATE TABLE `t1` (
|
||||
@ -9,6 +13,8 @@ t1 CREATE TABLE `t1` (
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1
|
||||
/*!50500 PARTITION BY LIST COLUMNS(a)
|
||||
(PARTITION p0 VALUES IN (_cp1250 0x81) ENGINE = MyISAM) */
|
||||
Warnings:
|
||||
Warning 1300 Invalid cp1250 character string: '81'
|
||||
drop table t1;
|
||||
create table t1 (a varchar(2) character set cp1250)
|
||||
partition by list columns (a)
|
||||
|
@ -214,15 +214,24 @@ plüg_dest NULL
|
||||
DROP USER plüg_dest;
|
||||
SET NAMES ascii;
|
||||
CREATE USER 'plüg' IDENTIFIED WITH 'test_plugin_server' AS 'plüg_dest';
|
||||
Warnings:
|
||||
Warning 1300 Invalid ascii character string: 'pl\xC3\xBCg'
|
||||
Warning 1300 Invalid ascii character string: 'pl\xC3\xBCg_...'
|
||||
SELECT user,plugin,authentication_string FROM mysql.user WHERE user != 'root';
|
||||
user plugin authentication_string
|
||||
pl??g test_plugin_server pl??g_dest
|
||||
DROP USER 'plüg';
|
||||
Warnings:
|
||||
Warning 1300 Invalid ascii character string: 'pl\xC3\xBCg'
|
||||
CREATE USER 'plüg_dest' IDENTIFIED BY 'plug_dest_passwd';
|
||||
Warnings:
|
||||
Warning 1300 Invalid ascii character string: 'pl\xC3\xBCg_...'
|
||||
SELECT user,plugin,authentication_string FROM mysql.user WHERE user != 'root';
|
||||
user plugin authentication_string
|
||||
pl??g_dest NULL
|
||||
DROP USER 'plüg_dest';
|
||||
Warnings:
|
||||
Warning 1300 Invalid ascii character string: 'pl\xC3\xBCg_...'
|
||||
SET NAMES latin1;
|
||||
========== test 1.1.1.5 ====================================
|
||||
CREATE USER 'plüg' IDENTIFIED WITH 'test_plügin_server' AS 'plüg_dest';
|
||||
|
Reference in New Issue
Block a user