// Skip this test if there is only one partition
if (catalogContext.numberOfPartitions == 1) return;
Client client = this.getClient();
RegressionSuiteUtil.initializeTPCCDatabase(catalogContext, client);
ClientResponse cresponse;
// Invoke a NewOrder DTXN
Object params[] = RegressionSuiteUtil.generateNewOrder(catalogContext.numberOfPartitions, true, 1, 1);
cresponse = client.callProcedure(neworder.class.getSimpleName(), params);
assertEquals(Status.OK, cresponse.getStatus());
assertFalse(cresponse.toString(), cresponse.isSinglePartition());
// Check that our remote query counters got increased
cresponse = RegressionSuiteUtil.getStats(client, SysProcSelector.TXNPROFILER);
assertNotNull(cresponse);
assertEquals(Status.OK, cresponse.getStatus());
VoltTable results[] = cresponse.getResults();
assertEquals(1, results.length);
// System.out.println(VoltTableUtil.format(results[0]));
Map<String, Long> profilerStats = new TreeMap<String, Long>();
while (results[0].advanceRow()) {