Lines Matching refs:SESSION

1 SELECT @@SESSION.binlog_format;
2 @@SESSION.binlog_format
6 # Test allow switching @@SESSION.binlog_format from MIXED to STATEMENT
8 SET SESSION binlog_format = STATEMENT;
9 SELECT @@SESSION.binlog_format;
10 @@SESSION.binlog_format
12 # Test allow switching @@SESSION.binlog_format from STATEMENT to
14 SET SESSION binlog_format = STATEMENT;
15 SELECT @@SESSION.binlog_format;
16 @@SESSION.binlog_format
19 SELECT @@SESSION.binlog_format;
20 @@SESSION.binlog_format
22 # Test allow switching @@SESSION.binlog_format from STATEMENT to
24 SET SESSION binlog_format = MIXED;
25 SELECT @@SESSION.binlog_format;
26 @@SESSION.binlog_format
28 # Test allow switching @@SESSION.binlog_format from MIXED to MIXED
30 SET SESSION binlog_format = MIXED;
31 SELECT @@SESSION.binlog_format;
32 @@SESSION.binlog_format
35 SELECT @@SESSION.binlog_format;
36 @@SESSION.binlog_format
38 # Test forbit switching @@SESSION.binlog_format from MIXED to STATEMENT
40 SET SESSION binlog_format = STATEMENT;
42 SELECT @@SESSION.binlog_format;
43 @@SESSION.binlog_format
45 SET SESSION binlog_format = ROW;
46 SELECT @@SESSION.binlog_format;
47 @@SESSION.binlog_format
50 # Test allow switching @@SESSION.binlog_format from ROW to MIXED
52 SET SESSION binlog_format = MIXED;
53 SELECT @@SESSION.binlog_format;
54 @@SESSION.binlog_format
57 # Test allow switching @@SESSION.binlog_format from MIXED to ROW
59 SET SESSION binlog_format = ROW;
60 SELECT @@SESSION.binlog_format;
61 @@SESSION.binlog_format
63 # Test allow switching @@SESSION.binlog_format from ROW to ROW
65 SET SESSION binlog_format = ROW;
66 SELECT @@SESSION.binlog_format;
67 @@SESSION.binlog_format
70 # Test forbit switching @@SESSION.binlog_format from ROW to STATEMENT
72 SET SESSION binlog_format = STATEMENT;
74 SELECT @@SESSION.binlog_format;
75 @@SESSION.binlog_format