You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When generating a pydantic model that includes a BYTEA column in postgres, it has a memoryview attribute that causes this error:
pydantic.errors.PydanticSchemaGenerationError: Unable to generate pydantic-core schema for <class 'memoryview'>. Set `arbitrary_types_allowed=True` in the model_config to ignore this error or implement `__get_pydantic_core_schema__` on your type to fully support it.
Should it be bytes instead?
The text was updated successfully, but these errors were encountered:
When generating a pydantic model that includes a
BYTEA
column in postgres, it has amemoryview
attribute that causes this error:Should it be
bytes
instead?The text was updated successfully, but these errors were encountered: