// Confirms that a particular row event is accepted. We use inserts for this // purpose. private void verifyRowIgnore( FilterVerificationHelper filterHelper, long seqno, String schema, String table, String[] names, Object[] values) throws ReplicatorException, InterruptedException { ReplDBMSEvent e = eventHelper.eventFromRowInsert(seqno, schema, table, names, values, 0, true); verifyIgnore(filterHelper, e); }
// Confirms that a particular statement-based event is ignored. private void verifyStmtIgnore( FilterVerificationHelper filterHelper, long seqno, String defaultSchema, String query) throws ReplicatorException, InterruptedException { ReplDBMSEvent e = eventHelper.eventFromStatement(seqno, defaultSchema, query); verifyIgnore(filterHelper, e); }