// Quickly check that two read-only txns are non-conflicting
// even without a txn estimate
int basePartition = 0;
PartitionSet partitions = catalogContext.getAllPartitionIds();
Procedure proc0 = this.getProcedure(paymentByCustomerId.class);
LocalTransaction ts0 = new LocalTransaction(this.hstore_site);
Object params0[] = new Object[]{ 0, 1, 2 };
ts0.testInit(10000l, basePartition, partitions, proc0, params0);
Procedure proc1 = this.getProcedure(UpdateNewOrder.class);
LocalTransaction ts1 = new LocalTransaction(this.hstore_site);
Object params1[] = new Object[]{ 0, 0 };
ts1.testInit(10001l, basePartition, partitions, proc1, params1);
boolean ret = this.checker.hasConflictBefore(ts0, ts1, basePartition);