-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
7 changed files
with
58 additions
and
5 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
1 change: 1 addition & 0 deletions
1
src/integrationTest/resources/statements/prepared-statement/cleanup_2_0.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 @@ | ||
DROP TABLE IF EXISTS prepared_statement_2_0_test; |
7 changes: 7 additions & 0 deletions
7
src/integrationTest/resources/statements/prepared-statement/ddl_2_0.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,7 @@ | ||
DROP TABLE IF EXISTS prepared_statement_2_0_test; | ||
CREATE | ||
FACT TABLE IF NOT EXISTS prepared_statement_2_0_test ( | ||
make STRING not null, | ||
location GEOGRAPHY null | ||
) | ||
PRIMARY INDEX make; |
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
id arr name a_date is_online a_double an_integer url | ||
int32 Array(Array(Array(String))) Nullable(String) Date Boolean Float32 Int64 Nullable(String) | ||
1 [[['1','2'],['3','4']]] Taylor\'s Prime Steak House 2022-05-10 1 14.6 5 http://firebolt.io | ||
2 [[['1','2'],['3','4']],[['5','6'],['7','8',NULL]]] \N 2022-05-10 0 \N \N \N | ||
id arr name a_date is_online a_double an_integer url location | ||
int32 Array(Array(Array(String))) Nullable(String) Date Boolean Float32 Int64 Nullable(String) Geography | ||
1 [[['1','2'],['3','4']]] Taylor\'s Prime Steak House 2022-05-10 1 14.6 5 http://firebolt.io 0101000020E6100000FEFFFFFFFFFFEF3F000000000000F03F | ||
2 [[['1','2'],['3','4']],[['5','6'],['7','8',NULL]]] \N 2022-05-10 0 \N \N \N \N |