-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(integration) add test for dateadd
- Loading branch information
1 parent
10674e5
commit 048e757
Showing
2 changed files
with
89 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
with Input_data as ( | ||
select | ||
'2023-11-12 13:14:15.678' as `testdate`, | ||
null as `null_value`, | ||
{{ pm_utils.to_integer('1') }} as `bigint_value` | ||
|
||
) | ||
|
||
select | ||
{# Add milliseconds, seconds, minutes, hours, days, months and years #} | ||
{{ pm_utils.to_varchar(pm_utils.dateadd('millisecond', 1, '`testdate`')) }} as `add_milliseconds`, | ||
{{ pm_utils.to_varchar(pm_utils.dateadd('second', 1, '`testdate`')) }} as `add_seconds`, | ||
{{ pm_utils.to_varchar(pm_utils.dateadd('minute', 1, '`testdate`')) }} as `add_minutes`, | ||
{{ pm_utils.to_varchar(pm_utils.dateadd('hour', 1, '`testdate`')) }} as `add_hours`, | ||
{{ pm_utils.to_varchar(pm_utils.dateadd('day', 1, '`testdate`')) }} as `add_days`, | ||
{{ pm_utils.to_varchar(pm_utils.dateadd('week', 1, '`testdate`')) }} as `add_weeks`, | ||
{{ pm_utils.to_varchar(pm_utils.dateadd('month', 1, '`testdate`')) }} as `add_months`, | ||
{{ pm_utils.to_varchar(pm_utils.dateadd('quarter', 1, '`testdate`')) }} as `add_quarters`, | ||
{{ pm_utils.to_varchar(pm_utils.dateadd('year', 1, '`testdate`')) }} as `add_years`, | ||
|
||
{# Use bigint as the value #} | ||
{{ pm_utils.to_varchar(pm_utils.dateadd('year', '`bigint_value`', '`testdate`')) }} as `add_bigint`, | ||
|
||
{% if target.type == 'sqlserver' %} | ||
{# SQL Server uses datetime2 format, which has a precision of 7 digits #} | ||
'2023-11-12 13:14:15.6790000' as `add_milliseconds_expected`, | ||
'2023-11-12 13:14:16.6780000' as `add_seconds_expected`, | ||
'2023-11-12 13:15:15.6780000' as `add_minutes_expected`, | ||
'2023-11-12 14:14:15.6780000' as `add_hours_expected`, | ||
'2023-11-13 13:14:15.6780000' as `add_days_expected`, | ||
'2023-11-19 13:14:15.6780000' as `add_weeks_expected`, | ||
'2023-12-12 13:14:15.6780000' as `add_months_expected`, | ||
'2024-02-12 13:14:15.6780000' as `add_quarters_expected`, | ||
'2024-11-12 13:14:15.6780000' as `add_years_expected`, | ||
'2024-11-12 13:14:15.6780000' as `add_bigint_expected`, | ||
{% else %} | ||
'2023-11-12 13:14:15.679' as `add_milliseconds_expected`, | ||
'2023-11-12 13:14:16.678' as `add_seconds_expected`, | ||
'2023-11-12 13:15:15.678' as `add_minutes_expected`, | ||
'2023-11-12 14:14:15.678' as `add_hours_expected`, | ||
'2023-11-13 13:14:15.678' as `add_days_expected`, | ||
'2023-11-19 13:14:15.678' as `add_weeks_expected`, | ||
'2023-12-12 13:14:15.678' as `add_months_expected`, | ||
'2024-02-12 13:14:15.678' as `add_quarters_expected`, | ||
'2024-11-12 13:14:15.678' as `add_years_expected`, | ||
'2024-11-12 13:14:15.678' as `add_bigint_expected`, | ||
{% endif %} | ||
|
||
{# Use null as the date #} | ||
{{ pm_utils.to_varchar(pm_utils.dateadd('year', 1, '`null_value`')) }} as `add_to_null_value`, | ||
'' as `add_to_null_value_expected` | ||
|
||
from Input_data |