-
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.
fixed integration tests according to changes on server side
- default nullability in tests - table type "BASE TABLE" - test that was broken by previous fix that avoids checking whether DB exists for local connection - float is now alias to double - use query_label request parameter - avoid using checksum() function that is not supported in new version for timeout test - additional tests for infra version
- Loading branch information
alexradzin
committed
Apr 3, 2024
1 parent
33baf35
commit 6a18f91
Showing
13 changed files
with
256 additions
and
67 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
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,12 +1,12 @@ | ||
DROP TABLE IF EXISTS "integration_test" CASCADE; | ||
CREATE | ||
FACT TABLE IF NOT EXISTS "integration_test" ( | ||
id BIGINT, | ||
id BIGINT NOT NULL, | ||
ts timestamp NULL, | ||
tstz timestamptz NULL, | ||
tsntz timestampntz NULL, | ||
content text NULL, | ||
success BOOLEAN NULL, | ||
year int | ||
success BOOLEAN, | ||
year int NOT NULL | ||
) | ||
primary index id |
4 changes: 2 additions & 2 deletions
4
src/integrationTest/resources/statements/prepared-statement/ddl.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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
DROP TABLE IF EXISTS prepared_statement_test; | ||
CREATE | ||
FACT TABLE IF NOT EXISTS prepared_statement_test ( | ||
make STRING, | ||
sales bigint, | ||
make STRING not null, | ||
sales bigint not null, | ||
signature bytea null | ||
) | ||
PRIMARY INDEX make; |
Oops, something went wrong.