Skip to content

Commit

Permalink
Fix isshema_names type converters
Browse files Browse the repository at this point in the history
  • Loading branch information
xzkostyan committed Mar 21, 2024
1 parent 4a3c3f4 commit 2d83080
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions clickhouse_sqlalchemy/drivers/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
)
from sqlalchemy.sql.ddl import CreateColumn
from sqlalchemy.sql.elements import TextClause
from sqlalchemy.types import DATE, DATETIME, FLOAT
from sqlalchemy.util.compat import inspect_getfullargspec
from sqlalchemy.util import (
warn,
Expand All @@ -34,11 +33,11 @@
'UInt32': types.UInt32,
'UInt16': types.UInt16,
'UInt8': types.UInt8,
'Date': DATE,
'DateTime': DATETIME,
'DateTime64': DATETIME,
'Float64': FLOAT,
'Float32': FLOAT,
'Date': types.Date,
'DateTime': types.DateTime,
'DateTime64': types.DateTime64,
'Float64': types.Float64,
'Float32': types.Float32,
'Decimal': types.Decimal,
'String': types.String,
'UUID': types.UUID,
Expand Down

0 comments on commit 2d83080

Please sign in to comment.