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
This issue has been automatically marked as stale because it has not had activity in the last 30 days. If there is no update within the next 7 days, this issue will be closed.
I have a struct defined like this:
The postgres statement generated when trying to insert a value for this model does not correctly quote the string values within the array:
This results in an error from postgres:
The non-nullable string slice works correctly, but the slice of string pointers generates
'{'baz'}'
when it should generate{"baz"}'
to be valid.The text was updated successfully, but these errors were encountered: