# File lib/rubyrep/replication_extenders/postgresql_replication.rb, line 125 def replication_trigger_exists?(trigger_name, table_name) !select_all("select 1 from information_schema.triggers\nwhere event_object_schema in (\#{schemas})\nand trigger_name = '\#{trigger_name}'\nand event_object_table = '\#{table_name}'\n").empty? end