【发布时间】:2021-05-27 00:35:00
【问题描述】:
我有一个使用 uuid.UUID 的 SqlAlchemy 查询对象:
import uuid
import sqlalchemy
foreign_uuid = '822965bb-c67e-47ee-ad12-a3b060ef79ae'
qry = Query(MyModel).filter(MyOtherModel.uuid == uuid.UUID(foreign_uuid))
现在我想从 SQLAlchemy 获取原始的 postgresql:
qry.statement.compile(dialect=postgresql.dialect(), compile_kwargs={"literal_binds": True}))
这给出了以下错误:NotImplementedError: Don't know how to literal-quote value UUID('822965bb-c67e-47ee-ad12-a3b060ef79ae')
这似乎是因为 SqlAlchemy 只知道如何处理基本类型。 The documentation suggests 使用 TypeDecorator 甚至为 GUID 提供一个:
from sqlalchemy.dialects.postgresql import UUID
import uuid
class GUID(TypeDecorator):
"""Platform-independent GUID type.
Uses PostgreSQL's UUID type, otherwise uses
CHAR(32), storing as stringified hex values.
"""
impl = CHAR
def load_dialect_impl(self, dialect):
if dialect.name == 'postgresql':
return dialect.type_descriptor(UUID())
else:
return dialect.type_descriptor(CHAR(32))
def process_bind_param(self, value, dialect):
if value is None:
return value
elif dialect.name == 'postgresql':
return str(value)
else:
if not isinstance(value, uuid.UUID):
return "%.32x" % uuid.UUID(value).int
else:
# hexstring
return "%.32x" % value.int
def process_result_value(self, value, dialect):
if value is None:
return value
else:
if not isinstance(value, uuid.UUID):
value = uuid.UUID(value)
return value
但是它没有说明如何使用这个TypeDecorator。我需要在我的模型中以某种方式引用它吗?我是否以某种方式使其可用于.statement.compile 呼叫?
【问题讨论】:
-
Do I need to reference it somehow in my model?是的。它将用作您的列Column('uuid', GUID)的类型。另一种选择是跳过uuid.UUID实例化并将foreign_uuid字符串直接传递给CHAR列qry = Query(MyModel).filter(MyOtherModel.uuid == foreign_uuid)- 如果您真的不需要它成为UUID对象。
标签: python postgresql sqlalchemy