Beispiel #1
0
 /**
  * Add an upper bound (exclusive) primary key for the scan. If any bound is already added, this
  * bound is intersected with that one.
  *
  * @param partialRow a partial row with specified key columns
  * @return this instance
  */
 public S exclusiveUpperBound(PartialRow partialRow) {
   return exclusiveUpperBoundRaw(partialRow.encodePrimaryKey());
 }
Beispiel #2
0
 /**
  * Add a lower bound (inclusive) primary key for the scan. If any bound is already added, this
  * bound is intersected with that one.
  *
  * @param partialRow a partial row with specified key columns
  * @return this instance
  */
 public S lowerBound(PartialRow partialRow) {
   return lowerBoundRaw(partialRow.encodePrimaryKey());
 }