private static void InitializeKeys(SpatialIndexKey from, SpatialIndexKey to)
 {
     from.initialize(long.MinValue);
     to.initialize(long.MaxValue);
     from.InitValueAsLowest(ValueGroup.GEOMETRY);
     to.InitValueAsHighest(ValueGroup.GEOMETRY);
 }
Esempio n. 2
0
 private void StartSeekForExists(SpatialIndexKey treeKeyFrom, SpatialIndexKey treeKeyTo, Org.Neo4j.Storageengine.Api.schema.IndexProgressor_NodeValueClient client, params IndexQuery[] predicates)
 {
     treeKeyFrom.InitValueAsLowest(ValueGroup.GEOMETRY);
     treeKeyTo.InitValueAsHighest(ValueGroup.GEOMETRY);
     StartSeekForInitializedRange(client, treeKeyFrom, treeKeyTo, predicates, IndexOrder.NONE, false, false);
 }