Comment 9 for bug 1706820

Revision history for this message
Krunal Bauskar (krunal-bauskar) wrote :

commit 183043e54f41d2dd607bcae5e28fd6dc53b031e8
Author: Krunal Bauskar <email address hidden>
Date: Mon Jul 31 13:11:50 2017 +0530

    - PXC#841: DDL is replicated even when sql_log_bin=0, and GTID is
      incremented in remote node

      sql_log_bin=0 will stop generation of binary logs data.
      In turn it will also stop replication and GTID increment.

      PXC executes DDL through TOI and DML through normal replication.
      Since binary log is not-generated DML replication was already blocked.
      DDL path didn't had a check for sql_log_bin.
      Added the needed check.