upTo property

  1. @TagNumber(1)
Int64Value get upTo

Optional. Optional constraint on the maximum number of documents to count.

This provides a way to set an upper bound on the number of documents to scan, limiting latency, and cost.

Unspecified is interpreted as no bound.

High-Level Example:

AGGREGATE COUNT_UP_TO(1000) OVER ( SELECT * FROM k );

Requires:

  • Must be greater than zero when present.

Implementation

@$pb.TagNumber(1)
$0.Int64Value get upTo => $_getN(0);
  1. @TagNumber(1)
set upTo (Int64Value v)

Implementation

@$pb.TagNumber(1)
set upTo($0.Int64Value v) {
  setField(1, v);
}