~ubuntu-branches/ubuntu/trusty/mysql-5.6/trusty

« back to all changes in this revision

Viewing changes to mysql-test/r/ctype_cp932_binlog_row.result

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-02-12 11:54:27 UTC
  • Revision ID: package-import@ubuntu.com-20140212115427-oq6tfsqxl1wuwehi
Tags: upstream-5.6.15
ImportĀ upstreamĀ versionĀ 5.6.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
drop table if exists t1;
 
2
set names cp932;
 
3
set character_set_database = cp932;
 
4
RESET MASTER;
 
5
CREATE TABLE t1(f1 blob);
 
6
PREPARE stmt1 FROM 'INSERT INTO t1 VALUES(?)';
 
7
SET @var1= x'8300';
 
8
EXECUTE stmt1 USING @var1;
 
9
include/show_binlog_events.inc
 
10
Log_name        Pos     Event_type      Server_id       End_log_pos     Info
 
11
master-bin.000001       #       Query   #       #       use `test`; CREATE TABLE t1(f1 blob)
 
12
master-bin.000001       #       Query   #       #       BEGIN
 
13
master-bin.000001       #       Table_map       #       #       table_id: # (test.t1)
 
14
master-bin.000001       #       Write_rows      #       #       table_id: # flags: STMT_END_F
 
15
master-bin.000001       #       Query   #       #       COMMIT
 
16
SELECT HEX(f1) FROM t1;
 
17
HEX(f1)
 
18
8300
 
19
DROP table t1;