We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We have a number of fields which store arrays of enum string values in JSONB columns. When we get a cache hit, it instead returns this error:
unmarshal field borders: invalid character '\\x00' looking for beginning of value
Ent schema in question:
// in ent/schema/route.go field.JSON("borders", customfield.Borders{}), // in customfield/borders.go type Border string type Borders []Border const ( BorderAIR Border = "AIR" BorderLAND Border = "LAND" BorderSEA Border = "SEA" BorderUnknown Border = "UNKNOWN" )
Is there something we need to implement for cache marshalling/unmarshalling into the cache?
The text was updated successfully, but these errors were encountered:
@a8m Any progress on this issue?
Sorry, something went wrong.
No branches or pull requests
We have a number of fields which store arrays of enum string values in JSONB columns. When we get a cache hit, it instead returns this error:
Ent schema in question:
Is there something we need to implement for cache marshalling/unmarshalling into the cache?
The text was updated successfully, but these errors were encountered: