boolean forceSend = false;
TableToWatchInfo tableToWatch = new TableToWatchInfo(null, this.specificHelper.getOwnSchema(this.pool), "TEST_REPLICATION");
tableToWatch.setActions("");
tableToWatch.setTrigger(null);
this.dbSpecific.addTableToWatch(tableToWatch, force, null, forceSend);
CallableStatement st = conn.prepareCall(sql);
st.setString(2, null);
st.setString(3, this.specificHelper.getOwnSchema(this.pool));
st.setString(4, "TEST_REPLICATION");
st.setString(5, "CREATE");
st.registerOutParameter(1, Types.VARCHAR);