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
Make VID element internal to the Entity (#5857)
* make vid entries internal to the entity
* cleanup
* better performant entity comparison
* shorten it
* filter out fom into_iter()
* Revert "shorten it"
This reverts commit 133f79a.
* more effecient iteration
* add test
store: Fix handling of enum arrays
Roundtripping arrays of enums would fail because we would read an array of
enums back as a single string "{yellow,red,BLUE}" instead of the array
["yellow", "red", "BLUE"]. Storing an update to such an entity, even if
users make no changes to that field, would fail because Postgres expects an
array and we were sending a scalar value.
This fixes a bug introduced in PR
#5372