Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
e529fdc5
Commit
e529fdc5
authored
Nov 03, 2005
by
holyfoot@deer.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merging
parent
401d19f0
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
9 deletions
+6
-9
mysql-test/r/ctype_cp932_binlog.result
mysql-test/r/ctype_cp932_binlog.result
+5
-7
mysql-test/t/ctype_cp932_binlog.test
mysql-test/t/ctype_cp932_binlog.test
+1
-2
No files found.
mysql-test/r/ctype_cp932_binlog.result
View file @
e529fdc5
...
@@ -6,13 +6,11 @@ CREATE TABLE t1(f1 blob);
...
@@ -6,13 +6,11 @@ CREATE TABLE t1(f1 blob);
PREPARE stmt1 FROM 'INSERT INTO t1 VALUES(?)';
PREPARE stmt1 FROM 'INSERT INTO t1 VALUES(?)';
SET @var1= x'8300';
SET @var1= x'8300';
EXECUTE stmt1 USING @var1;
EXECUTE stmt1 USING @var1;
SHOW BINLOG EVENTS FROM 79;
SHOW BINLOG EVENTS FROM 98;
Log_name Pos Event_type Server_id Orig_log_pos Info
Log_name Pos Event_type Server_id End_log_pos Info
master-bin.000001 # Query 1 # use `test`; SET ONE_SHOT CHARACTER_SET_CLIENT=95,COLLATION_CONNECTION=95,COLLATION_DATABASE=95,COLLATION_SERVER=8
master-bin.000001 98 Query 1 185 use `test`; CREATE TABLE t1(f1 blob)
master-bin.000001 # Query 1 # use `test`; CREATE TABLE t1(f1 blob)
master-bin.000001 185 User var 1 224 @`var1`=_binary 0x8300 COLLATE binary
master-bin.000001 # Query 1 # use `test`; SET ONE_SHOT CHARACTER_SET_CLIENT=95,COLLATION_CONNECTION=95,COLLATION_DATABASE=95,COLLATION_SERVER=8
master-bin.000001 224 Query 1 317 use `test`; INSERT INTO t1 VALUES(@'var1')
master-bin.000001 # User var 1 # @`var1`=_binary 0x8300 COLLATE binary
master-bin.000001 # Query 1 # use `test`; INSERT INTO t1 VALUES(@'var1')
SELECT HEX(f1) FROM t1;
SELECT HEX(f1) FROM t1;
HEX(f1)
HEX(f1)
8300
8300
...
...
mysql-test/t/ctype_cp932_binlog.test
View file @
e529fdc5
...
@@ -26,8 +26,7 @@ SET @var1= x'8300';
...
@@ -26,8 +26,7 @@ SET @var1= x'8300';
# code (and I have used it to test the fix) until there is some way to
# code (and I have used it to test the fix) until there is some way to
# exercise this code from mysql-test-run.
# exercise this code from mysql-test-run.
EXECUTE
stmt1
USING
@
var1
;
EXECUTE
stmt1
USING
@
var1
;
--
replace_column
2
# 5 #
SHOW
BINLOG
EVENTS
FROM
98
;
SHOW
BINLOG
EVENTS
FROM
79
;
SELECT
HEX
(
f1
)
FROM
t1
;
SELECT
HEX
(
f1
)
FROM
t1
;
DROP
table
t1
;
DROP
table
t1
;
# end test for bug#11338
# end test for bug#11338
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment