IndexScan_Default(Index(metadata.name_value), name = 'x', value = 'one')
IndexScan_Default(Index(reports.name), name = 'foo')
IndexScan_Default(Index(metadata.name_value), name = 'y', value = 'two')
*/
IndexBound fooBound = new IndexBound(testRow(rIndex, "foo", null), new SetColumnSelector(0));
Operator fooScan = API.indexScan_Default(rIndex,
false,
IndexKeyRange.bounded(rIndex, fooBound, true, fooBound, true));
IndexBound xOneBound = new IndexBound(testRow(mdIndex, "x", "one", null, null), new SetColumnSelector(0, 1));
Operator xOneScan = API.indexScan_Default(mdIndex,
false,
IndexKeyRange.bounded(mdIndex, xOneBound, true, xOneBound, true));
IndexBound yTwoBound = new IndexBound(testRow(mdIndex, "y", "two", null, null), new SetColumnSelector(0, 1));
Operator yTwoScan = API.indexScan_Default(mdIndex,
false,
IndexKeyRange.bounded(mdIndex, yTwoBound, true, yTwoBound, true));
TKeyComparable comparableIntBigint = typesRegistryService().getKeyComparable(