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
Slices of UDTs are not supported by gocqlx. This is because gocqlx hacks binding of objects and instead passing original pointer to the object representing column, it passes special type which internally rewrites pointers. This works only for objects, because we can allocate and initialize this special type for each column. But with slices, allocation and initialization is done by the driver so gocqlx cannot interfere with it.
The text was updated successfully, but these errors were encountered:
Slices of UDTs are not supported by gocqlx. This is because gocqlx hacks binding of objects and instead passing original pointer to the object representing column, it passes special type which internally rewrites pointers. This works only for objects, because we can allocate and initialize this special type for each column. But with slices, allocation and initialization is done by the driver so gocqlx cannot interfere with it.
The text was updated successfully, but these errors were encountered: