~linuxjedi/drizzle/trunk-bug-667053

« back to all changes in this revision

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

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

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
show binlog events from <binlog_start>;
 
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   #       #       use `test`; 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   #       #       use `test`; COMMIT
 
16
SELECT HEX(f1) FROM t1;
 
17
HEX(f1)
 
18
8300
 
19
DROP table t1;