-
Notifications
You must be signed in to change notification settings - Fork 2
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
Showing
1 changed file
with
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
# Backlog | ||
|
||
## Iteration +1 | ||
From dialect split-off. | ||
- Re-enable parameterized test cases. | ||
- Re-enable parameterized test cases. It has not been carried over | ||
after dialect/driver split-off. | ||
``` | ||
tests.addTest(ParametrizedTestCase.parametrize(SqlAlchemyCompilerTest, param={"server_version_info": None})) | ||
tests.addTest(ParametrizedTestCase.parametrize(SqlAlchemyCompilerTest, param={"server_version_info": (4, 0, 12)})) | ||
tests.addTest(ParametrizedTestCase.parametrize(SqlAlchemyCompilerTest, param={"server_version_info": (4, 1, 10)})) | ||
``` | ||
- Re-enable doctests. | ||
|
||
- Take care about deprecation warning. | ||
``` | ||
Doctest: getting-started.rst ... /Users/amo/dev/crate/drivers/sqlalchemy-cratedb/.venv/lib/python3.11/site-packages/crate/client/sqlalchemy/dialect.py:367: SAWarning: The GenericFunction 'date_trunc' is already registered and is going to be overridden. | ||
class DateTrunc(functions.GenericFunction): | ||
``` |