Hello. Thank you for the library. I have a question though: in go's implementation of sqlc gen when working with queries such as SELECT * FROM users you get []User in code, same type for all results of selecting full data from users table. In this library each query gets its own *Row result, even in such cases. Is this intentional, can it be configured otherwise?
Hello. Thank you for the library. I have a question though: in go's implementation of sqlc gen when working with queries such as
SELECT * FROM usersyou get[]Userin code, same type for all results of selecting full data fromuserstable. In this library each query gets its own*Rowresult, even in such cases. Is this intentional, can it be configured otherwise?