mirror of
https://github.com/Infinidat/infi.clickhouse_orm.git
synced 2024-11-22 09:06:41 +03:00
Merge branch 'develop' of https://github.com/Romamo/infi.clickhouse_orm into Romamo-develop
This commit is contained in:
commit
bce87c40c1
|
@ -414,7 +414,7 @@ class BaseEnumField(Field):
|
|||
import re
|
||||
from enum import Enum
|
||||
members = {}
|
||||
for match in re.finditer("'(\w+)' = (\d+)", db_type):
|
||||
for match in re.finditer("'(\w+)' = (-?\d+)", db_type):
|
||||
members[match.group(1)] = int(match.group(2))
|
||||
enum_cls = Enum('AdHocEnum', members)
|
||||
field_class = Enum8Field if db_type.startswith('Enum8') else Enum16Field
|
||||
|
|
Loading…
Reference in New Issue
Block a user