evaluatedCount property
- @TagNumber(9)
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 theevaluated_count
, by settingignore_nulls = true
.
Implementation
@$pb.TagNumber(9)
$fixnum.Int64 get evaluatedCount => $_getI64(5);
- @TagNumber(9)
Implementation
@$pb.TagNumber(9)
set evaluatedCount($fixnum.Int64 v) { $_setInt64(5, v); }