int before = getLong(row, 0).intValue();
long z = getLong(row, 1);
int pid = getLong(row, 3).intValue();
int cid = getLong(row, 4).intValue();
// Check against expected
assertSame(cSpatialIndexRowType.physicalRowType(), row.rowType());
assertEquals(beforeEQ, before);
BigDecimal clat = clats.get(cid);
BigDecimal clon = clons.get(cid);
long zExpected = Spatial.shuffle(space, clat.doubleValue(), clon.doubleValue());
assertEquals(zExpected, z);