Skip to content

Commit

Permalink
Merge pull request #7 from bmsuisse/dev
Browse files Browse the repository at this point in the history
fix datetime_ntz
  • Loading branch information
aersam authored Jun 10, 2024
2 parents dc745bf + 38e06c0 commit 91977e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deltalake2db/polars.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def _get_type(dtype: "DataType") -> "pl.PolarsDataType":
return pl.Int8
elif dtype_str == "null":
return pl.Null
elif dtype_str == "timestampNtz":
elif dtype_str in ["timestampNtz", "timestamp_ntz"]:
return pl.Datetime
raise NotImplementedError(f"{dtype_str} not supported in polars currently")

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "deltalake2db"
version = "0.3.4"
version = "0.3.5"
description = ""
authors = ["Adrian Ehrsam <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 91977e9

Please sign in to comment.