-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b677a2b
commit d9891c4
Showing
7 changed files
with
59 additions
and
2 deletions.
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
...engine_specific_rendering.py/SqlQueryPlan/BigQuerySqlClient/test_generate_uuid__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,4 @@ | ||
-- Test Generate UUID Expression | ||
SELECT | ||
GENERATE_UUID() AS uuid | ||
FROM foo.bar a |
4 changes: 4 additions & 0 deletions
4
...gine_specific_rendering.py/SqlQueryPlan/DatabricksSqlClient/test_generate_uuid__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,4 @@ | ||
-- Test Generate UUID Expression | ||
SELECT | ||
UUID() AS uuid | ||
FROM foo.bar a |
4 changes: 4 additions & 0 deletions
4
...t_engine_specific_rendering.py/SqlQueryPlan/DuckDbSqlClient/test_generate_uuid__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,4 @@ | ||
-- Test Generate UUID Expression | ||
SELECT | ||
GEN_RANDOM_UUID() AS uuid | ||
FROM foo.bar a |
4 changes: 4 additions & 0 deletions
4
...engine_specific_rendering.py/SqlQueryPlan/PostgresSqlClient/test_generate_uuid__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,4 @@ | ||
-- Test Generate UUID Expression | ||
SELECT | ||
GEN_RANDOM_UUID() AS uuid | ||
FROM foo.bar a |
4 changes: 4 additions & 0 deletions
4
...engine_specific_rendering.py/SqlQueryPlan/RedshiftSqlClient/test_generate_uuid__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,4 @@ | ||
-- Test Generate UUID Expression | ||
SELECT | ||
CONCAT(CAST(RANDOM()*100000000 AS INT)::VARCHAR,CAST(RANDOM()*100000000 AS INT)::VARCHAR) AS uuid | ||
FROM foo.bar a |
4 changes: 4 additions & 0 deletions
4
...ngine_specific_rendering.py/SqlQueryPlan/SnowflakeSqlClient/test_generate_uuid__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,4 @@ | ||
-- Test Generate UUID Expression | ||
SELECT | ||
UUID_STRING() AS uuid | ||
FROM foo.bar a |
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