evaluatedCount property

  1. @TagNumber(9)
Int64 get evaluatedCount

The number of rows a rule was evaluated against. This field is only valid for ColumnMap type rules.

Evaluated count can be configured to either

  • include all rows (default) - with null rows automatically failing rule evaluation, or
  • exclude null rows from the evaluated_count, by setting ignore_nulls = true.

Implementation

@$pb.TagNumber(9)
$fixnum.Int64 get evaluatedCount => $_getI64(5);
  1. @TagNumber(9)
set evaluatedCount (Int64 v)

Implementation

@$pb.TagNumber(9)
set evaluatedCount($fixnum.Int64 v) { $_setInt64(5, v); }