Skip to content

Commit

Permalink
Update min_row_count error text (#4586)
Browse files Browse the repository at this point in the history
  • Loading branch information
fbertsch authored Nov 20, 2023
1 parent 05fed88 commit c21cca6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/checks/min_row_count.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
)
SELECT IF(
(SELECT COUNTIF(total_rows < {{ threshold }}) FROM min_row_count) > 0,
ERROR(CONCAT("Less than ", (SELECT total_rows FROM min_row_count), " rows found (expected more than {{ threshold }})")),
ERROR(CONCAT("Min Row Count Error: ", (SELECT total_rows FROM min_row_count), " rows found, expected more than {{ threshold }} rows")),
NULL
);
{% endmacro %}

0 comments on commit c21cca6

Please sign in to comment.