# File lib/rubyrep/replication_extenders/mysql_replication.rb, line 118
      def replication_trigger_exists?(trigger_name, table_name)
        !select_all("select 1 from information_schema.triggers where trigger_schema = database() and trigger_name = '#{trigger_name}_insert' and event_object_table = '#{table_name}'").empty?
      end