I have an expectation for the number of rows in a table to be between min_count
and max_count
. When I build my data docs the expectation ends up saying something like
Must have greater than or equal to {'$PARAMETER': 'min_count'} and
less than or equal to {'$PARAMETER': 'max_count'} rows.
I’d like it to say
Must have greater than or equal to 10 and less than or equal to 100 rows.
I am storing the data docs & validations in S3. The evaluation parameters are being set by when I call run_validation_operator
Is this the expected behavior, a bug, or do I not have something set up correctly?