MySQL 5.6.14 Source Code Document
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
show_binlog_events.inc
1 # ==== Purpose ====
2 #
3 # Execute SHOW BINLOG EVENTS and mask non-deterministic output.
4 #
5 # ==== Usage ====
6 #
7 # [--let $binlog_file= [<FILENAME> | LAST]]
8 # [--let $binlog_start= <POSITION> ]
9 # [--let $binlog_limit= 1, 3 ]
10 # [--let $keep_gtid_events= 1]
11 # --source include/show_binlog_events.inc
12 #
13 # Parameters:
14 #
15 # $binlog_file
16 # Filename for the 'IN' clause of SHOW BINLOG EVENTS. If none
17 # given, no argument is given to SHOW BINLOG EVENTS, meaning that
18 # it uses the first binlog. If you set this to "LAST", it prints
19 # the last binlog (according to SHOW MASTER STATUS).
20 #
21 # $binlog_start
22 # Position for the 'FROM' clause of SHOW BINLOG EVENTS. If none
23 # given, starts right after the Format_description_log_event.
24 #
25 # $binlog_limit
26 # Limit for the 'LIMIT' clause of SHOW BINLOG EVENTS, i.e.:
27 # $binlog_limit= 3 -- print three events
28 # $binlog_limit= 4, 3 -- skip four events, print the three next events
29 #
30 # $keep_gtid_events
31 # By default, Gtid_log_event and Previous_gtid_log_event are
32 # filtered out, so that the output is independent of whether GTIDs
33 # are enabled or not. If this flag is set, events are kept but
34 # the actual GTID values are masked out.
35 
36 --let $include_filename= show_binlog_events.inc
37 --source include/begin_include_file.inc
38 
39 --let $is_relay_log= 0
40 --source include/show_events.inc
41 
42 --let $include_filename= show_binlog_events.inc
43 --source include/end_include_file.inc