Helped with readability on test

This commit is contained in:
Joaquin Ossa 2024-12-18 10:52:52 +01:00
parent c95f551acf
commit 24aa9b7021
2 changed files with 6 additions and 5 deletions

View file

@ -2,8 +2,9 @@
select *
from {{ model }}
where
{{ column_name }}
!= date_trunc('MONTH', {{ column_name }})
+ interval '1 MONTH'
- interval '1 DAY'
{{ column_name }} != (
date_trunc('MONTH', {{ column_name }})
+ interval '1 MONTH'
- interval '1 DAY'
)
{% endtest %}