Search Results
                    
                    
            https://dev.mysql.com/doc/refman/8.4/en/sql-replication-statements.html
                                 Replication can be controlled through the SQL interface using the statements described in this section. Statements are split into a group which controls source servers, a group which controls replica servers, and a group which can be applied to any ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/xa-statements.html
                                 To perform XA transactions in MySQL, use the following statements: XA {START|BEGIN} xid [JOIN|RESUME] XA END xid [SUSPEND [FOR MIGRATE]] XA PREPARE xid XA COMMIT xid [ONE PHASE] XA ROLLBACK xid XA RECOVER [CONVERT XID] For XA START, the JOIN and ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/replication-statements-group.html
                                 This section provides information about the statements used for controlling group replication. 
                                            
                https://dev.mysql.com/doc/refman/8.4/en/set-sql-log-bin.html
                                 SET sql_log_bin = {OFF|ON} The sql_log_bin variable controls whether logging to the binary log is enabled for the current session (assuming that the binary log itself is enabled). To disable or enable binary logging for the current session, set the ...Set this variable to OFF for a session to temporarily disable binary logging while making changes to the source that you do not want replicated to the ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/sql-data-definition-statements.html
                                 ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/sql-data-manipulation-statements.html
                                 ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/sql-server-administration-statements.html
                                 ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/sql-transactional-statements.html
                                 MySQL supports local transactions (within a given client session) through statements such as SET autocommit, START TRANSACTION, COMMIT, and ROLLBACK. XA transaction support enables MySQL to participate in distributed transactions as well. 
                                            
                https://dev.mysql.com/doc/refman/8.4/en/sql-utility-statements.html
                                 ...
                                            
                https://dev.mysql.com/doc/internals/en/prepared-stored-statement-execution.html
                                 In order to call mysql_execute_command (the function that executes a statement) for a prepared statement and not damage its parse tree, we backup and restore the active Query_arena of THD. In other words, the arena which was active when ...We don't ...