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