fix(db_engine_specs): Update convert_dttm to work correctly with CrateDB (#27567)

(cherry picked from commit fcceaf081c)
This commit is contained in:
hlcianfagna
2024-03-21 18:35:40 +00:00
committed by Michael S. Molina
parent 634d72b19d
commit 652e6cfa3f
2 changed files with 2 additions and 2 deletions

View File

@@ -59,7 +59,7 @@ def test_alter_new_orm_column() -> None:
@pytest.mark.parametrize(
"target_type,expected_result",
[
("TimeStamp", "1546398245678.9"),
("TimeStamp", "CAST('2019-01-02T03:04:05.678900' AS TIMESTAMP)"),
("UnknownType", None),
],
)