As I understand in sqlc.yaml the overrides key is relevent for overriding individual columns.
What if I have two distinct queries that say generate the following functions: ListSongs
and SearchSongs
, but they both should return a struct with the same fields. sqlc generates two different row structs even though they have the same fields. I don’t want to resort to using empty interfaces or generics in the client code. Is there a best-practice to cover this case?