mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Manual merge (again)
configure.in: Auto merged include/mysql.h: Auto merged innobase/row/row0mysql.c: Auto merged BitKeeper/deleted/.del-ctype-cp932.c: Auto merged BitKeeper/deleted/.del-errmsg.txt~4617575065d612b9: Auto merged BitKeeper/deleted/.del-errmsg.txt~ffe4a0c9e3206150: Auto merged libmysql/libmysql.c: Auto merged libmysqld/Makefile.am: Auto merged mysql-test/r/ctype_ucs.result: Auto merged mysql-test/t/ctype_ucs.test: Auto merged mysql-test/t/ps_grant.test: Auto merged sql/ha_blackhole.cc: Auto merged strings/ctype-big5.c: Auto merged strings/ctype-ucs2.c: Auto merged
This commit is contained in:
@ -606,6 +606,24 @@ ucs2_bin 00610009
|
||||
ucs2_bin 0061
|
||||
ucs2_bin 00610020
|
||||
drop table t1;
|
||||
select hex(substr(_ucs2 0x00e400e50068,1));
|
||||
hex(substr(_ucs2 0x00e400e50068,1))
|
||||
00E400E50068
|
||||
select hex(substr(_ucs2 0x00e400e50068,2));
|
||||
hex(substr(_ucs2 0x00e400e50068,2))
|
||||
00E50068
|
||||
select hex(substr(_ucs2 0x00e400e50068,3));
|
||||
hex(substr(_ucs2 0x00e400e50068,3))
|
||||
0068
|
||||
select hex(substr(_ucs2 0x00e400e50068,-1));
|
||||
hex(substr(_ucs2 0x00e400e50068,-1))
|
||||
0068
|
||||
select hex(substr(_ucs2 0x00e400e50068,-2));
|
||||
hex(substr(_ucs2 0x00e400e50068,-2))
|
||||
00E50068
|
||||
select hex(substr(_ucs2 0x00e400e50068,-3));
|
||||
hex(substr(_ucs2 0x00e400e50068,-3))
|
||||
00E400E50068
|
||||
SET NAMES latin1;
|
||||
SET collation_connection='ucs2_swedish_ci';
|
||||
CREATE TABLE t1 (Field1 int(10) default '0');
|
||||
|
@ -376,6 +376,16 @@ SET NAMES latin1;
|
||||
SET collation_connection='ucs2_bin';
|
||||
-- source include/ctype_filesort.inc
|
||||
|
||||
#
|
||||
# Bug#10344 Some string functions fail for UCS2
|
||||
#
|
||||
select hex(substr(_ucs2 0x00e400e50068,1));
|
||||
select hex(substr(_ucs2 0x00e400e50068,2));
|
||||
select hex(substr(_ucs2 0x00e400e50068,3));
|
||||
select hex(substr(_ucs2 0x00e400e50068,-1));
|
||||
select hex(substr(_ucs2 0x00e400e50068,-2));
|
||||
select hex(substr(_ucs2 0x00e400e50068,-3));
|
||||
|
||||
SET NAMES latin1;
|
||||
#
|
||||
# Bug#8235
|
||||
|
@ -1,10 +1,6 @@
|
||||
# Can't test grants with embedded server
|
||||
-- source include/not_embedded.inc
|
||||
|
||||
# Tested here simply so it is not tested with embedded server
|
||||
prepare stmt4 from ' show full processlist ';
|
||||
--replace_column 1 number 6 time 3 localhost
|
||||
execute stmt4;
|
||||
|
||||
let $type= 'MYISAM' ;
|
||||
|
||||
@ -116,6 +112,11 @@ show grants for second_user@localhost ;
|
||||
|
||||
drop database mysqltest;
|
||||
|
||||
# Tested here simply so it is not tested with embedded server
|
||||
prepare stmt4 from ' show full processlist ';
|
||||
--replace_column 1 number 6 time 3 localhost
|
||||
execute stmt4;
|
||||
|
||||
## grant/revoke + drop user
|
||||
--error 1295
|
||||
prepare stmt3 from ' grant all on test.t1 to drop_user@localhost
|
||||
|
Reference in New Issue
Block a user