-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed window function API tests (#3)
- Loading branch information
Showing
3 changed files
with
3 additions
and
4 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
3 changes: 1 addition & 2 deletions
3
lib/dl_connector_clickhouse/dl_connector_clickhouse_tests/db/api/test_complex_queries.py
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,7 @@ | ||
from dl_api_lib_testing.connector.complex_queries import DefaultBasicComplexQueryTestSuite | ||
from dl_constants.enums import QueryProcessingMode | ||
|
||
from dl_connector_clickhouse_tests.db.api.base import ClickHouseDataApiTestBase | ||
|
||
|
||
class TestClickHouseBasicComplexQueries(ClickHouseDataApiTestBase, DefaultBasicComplexQueryTestSuite): | ||
query_processing_mode = QueryProcessingMode.native_wf | ||
pass |
3 changes: 1 addition & 2 deletions
3
lib/dl_connector_postgresql/dl_connector_postgresql_tests/db/api/test_complex_queries.py
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,7 @@ | ||
from dl_api_lib_testing.connector.complex_queries import DefaultBasicComplexQueryTestSuite | ||
from dl_constants.enums import QueryProcessingMode | ||
|
||
from dl_connector_postgresql_tests.db.api.base import PostgreSQLDataApiTestBase | ||
|
||
|
||
class TestPostgreSQLBasicComplexQueries(PostgreSQLDataApiTestBase, DefaultBasicComplexQueryTestSuite): | ||
query_processing_mode = QueryProcessingMode.native_wf | ||
pass |