strictMaxEnabled property

  1. @TagNumber.new(5)
bool get strictMaxEnabled

Whether column statistic needs to be strictly lesser than ('<') the maximum, or if equality is allowed.

Only relevant if a max_value has been defined. Default = false.

Implementation

@$pb.TagNumber(5)
$core.bool get strictMaxEnabled => $_getBF(4);
  1. @TagNumber.new(5)
set strictMaxEnabled (bool v)

Implementation

@$pb.TagNumber(5)
set strictMaxEnabled($core.bool v) {
  $_setBool(4, v);
}