-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update SQL engine snapshots for add time expr test
Not totally relevant to this PR, but these seem to have been removed somehow.
- Loading branch information
1 parent
179ebfd
commit e8cfa48
Showing
7 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
...napshots/test_engine_specific_rendering.py/SqlPlan/BigQuery/test_add_time_expr__plan0.sql
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,10 @@ | ||
test_name: test_add_time_expr | ||
test_filename: test_engine_specific_rendering.py | ||
docstring: | ||
Tests rendering of the SqlAddTimeExpr in a query. | ||
sql_engine: BigQuery | ||
--- | ||
-- Test Add Time Expression | ||
SELECT | ||
DATE_ADD(CAST('2020-01-01' AS DATETIME), INTERVAL SqlExpressionRenderResult(sql='1', bind_parameter_set=SqlBindParameterSet(param_items=())) quarter) AS add_time | ||
FROM foo.bar a |
10 changes: 10 additions & 0 deletions
10
...pshots/test_engine_specific_rendering.py/SqlPlan/Databricks/test_add_time_expr__plan0.sql
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,10 @@ | ||
test_name: test_add_time_expr | ||
test_filename: test_engine_specific_rendering.py | ||
docstring: | ||
Tests rendering of the SqlAddTimeExpr in a query. | ||
sql_engine: Databricks | ||
--- | ||
-- Test Add Time Expression | ||
SELECT | ||
DATEADD(month, (1 * 3), '2020-01-01') AS add_time | ||
FROM foo.bar a |
10 changes: 10 additions & 0 deletions
10
.../snapshots/test_engine_specific_rendering.py/SqlPlan/DuckDB/test_add_time_expr__plan0.sql
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,10 @@ | ||
test_name: test_add_time_expr | ||
test_filename: test_engine_specific_rendering.py | ||
docstring: | ||
Tests rendering of the SqlAddTimeExpr in a query. | ||
sql_engine: DuckDB | ||
--- | ||
-- Test Add Time Expression | ||
SELECT | ||
'2020-01-01' + INTERVAL (1 * 3) month AS add_time | ||
FROM foo.bar a |
10 changes: 10 additions & 0 deletions
10
...napshots/test_engine_specific_rendering.py/SqlPlan/Postgres/test_add_time_expr__plan0.sql
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,10 @@ | ||
test_name: test_add_time_expr | ||
test_filename: test_engine_specific_rendering.py | ||
docstring: | ||
Tests rendering of the SqlAddTimeExpr in a query. | ||
sql_engine: Postgres | ||
--- | ||
-- Test Add Time Expression | ||
SELECT | ||
'2020-01-01' + MAKE_INTERVAL(months => (1)) AS add_time | ||
FROM foo.bar a |
10 changes: 10 additions & 0 deletions
10
...napshots/test_engine_specific_rendering.py/SqlPlan/Redshift/test_add_time_expr__plan0.sql
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,10 @@ | ||
test_name: test_add_time_expr | ||
test_filename: test_engine_specific_rendering.py | ||
docstring: | ||
Tests rendering of the SqlAddTimeExpr in a query. | ||
sql_engine: Redshift | ||
--- | ||
-- Test Add Time Expression | ||
SELECT | ||
DATEADD(month, (1 * 3), '2020-01-01') AS add_time | ||
FROM foo.bar a |
10 changes: 10 additions & 0 deletions
10
...apshots/test_engine_specific_rendering.py/SqlPlan/Snowflake/test_add_time_expr__plan0.sql
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,10 @@ | ||
test_name: test_add_time_expr | ||
test_filename: test_engine_specific_rendering.py | ||
docstring: | ||
Tests rendering of the SqlAddTimeExpr in a query. | ||
sql_engine: Snowflake | ||
--- | ||
-- Test Add Time Expression | ||
SELECT | ||
DATEADD(month, (1 * 3), '2020-01-01') AS add_time | ||
FROM foo.bar a |
10 changes: 10 additions & 0 deletions
10
...w/snapshots/test_engine_specific_rendering.py/SqlPlan/Trino/test_add_time_expr__plan0.sql
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,10 @@ | ||
test_name: test_add_time_expr | ||
test_filename: test_engine_specific_rendering.py | ||
docstring: | ||
Tests rendering of the SqlAddTimeExpr in a query. | ||
sql_engine: Trino | ||
--- | ||
-- Test Add Time Expression | ||
SELECT | ||
DATE_ADD('month', (1), '2020-01-01') AS add_time | ||
FROM foo.bar a |