[QUESTION] How can I achieve the samve behavior as go-pg's use_zero for pointer fields? #618
-
How can I achieve the same behavior as go-pg's use_zero for pointer fields? |
Beta Was this translation helpful? Give feedback.
Answered by
vmihailenco
Jul 18, 2022
Replies: 1 comment 2 replies
-
Don't use a pointer? E.g. use |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
Warashi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Don't use a pointer? E.g. use
string
instead of*string
.