Class QueryPlan.RangeScan

All Implemented Interfaces:
Serializable
Enclosing class:
QueryPlan

public static final class QueryPlan.RangeScan extends QueryPlan.Scan
Query plan node which scans a range of rows from a table.
See Also:
  • Field Details

    • low

      public final String low
    • high

      public final String high
  • Constructor Details

    • RangeScan

      public RangeScan(String table, String which, String[] keyColumns, boolean reverse, String low, String high)
      Parameters:
      which - primary key, alternate key, or secondary index
      keyColumns - columns with '+' or '-' prefix
      reverse - true if a reverse scan
      low - low bound filter expression (or null if open)
      high - high bound filter expression (or null if open)
  • Method Details