Tags: coderszone899/graph-node
Tags
Make VID element internal to the Entity (graphprotocol#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
graphprotocol#5372
PreviousNext