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
When generating code for queries that return slices, the generated code initializes the slice as nil instead of an empty slice. When this nil slice is marshaled to JSON, it becomes null instead of [], which can be unexpected for API consumers who expect consistent array responses.
Add a configuration option to control whether slice results should be initialized as nil or empty slices. This would allow users to choose between:
Current behaviour (nil slices, marshals to null)
Empty slices (marshals to [])
Use Case
This is particularly important for REST APIs where consumers expect consistent types in responses. Having an array field sometimes return null and sometimes [] can cause issues with client-side type checking and handling.
However, having this configurable in sqlc would provide a cleaner solution and consistent behavior across generated code.
What database engines need to be changed?
PostgreSQL
What programming language backends need to be changed?
Go
The text was updated successfully, but these errors were encountered:
What do you want to change?
When generating code for queries that return slices, the generated code initializes the slice as
nil
instead of an empty slice. When thisnil
slice is marshaled to JSON, it becomesnull
instead of[]
, which can be unexpected for API consumers who expect consistent array responses.Current Behavior
Currently generated code:
When marshaled to JSON:
Desired Behavior
Proposed generated code:
When marshaled to JSON:
{ "data": [] }
Feature Request
Add a configuration option to control whether slice results should be initialized as
nil
or empty slices. This would allow users to choose between:null
)[]
)Use Case
This is particularly important for REST APIs where consumers expect consistent types in responses. Having an array field sometimes return
null
and sometimes[]
can cause issues with client-side type checking and handling.However, having this configurable in sqlc would provide a cleaner solution and consistent behavior across generated code.
What database engines need to be changed?
PostgreSQL
What programming language backends need to be changed?
Go
The text was updated successfully, but these errors were encountered: