Open RHavar opened 8 years ago
I have similar error when doing "double nesting":
type Base struct {
X int
}
type A1 struct {
Base
}
type A2 struct {
Base
A int
}
+1
+1
This seems like a pretty important thing, is it already implemented or has it just been ignored?
I'm having this exact problem. The fact that it corrupts data for the duplicated fields silently is very concerning.
Is there an update on this issue? or a reasonable workaround?
I believe you can get around this issue by modifying the output column names on your query.
SELECT
chat_messages.id "chat.id", --... other chat_messages columns
users.id "user.id", -- ... other user columns
FROM chat_messages
JOIN users ON users.id = chat_messages.user_id
ORDER BY chat_messages.id DESC LIMIT 100;
This will output something like this
chat.id | user.id |
---|---|
1222 | 123 |
And sqlx will basically do
userMessage := UserMessage{}
userMessage.Chat.ID = 1222
userMessage.User.ID = 123
The issue with your original query is that the output column names aren't fully qualified, so you get something like this
id | id |
---|---|
1222 | 123 |
(sometimes your ide will auto-prefix the column names for you, try running your query in command line and see what you get for column names)
And sqlx will basically do
userMessage := UserMessage{}
userMessage.ID = 1222
userMessage.ID = 123
The shadowing is a golang "way of doing things" that you can't really get around.
Hope that helps
Often it's quite useful to have nested data-structures, because a plain join would lead to many conflicts and confusions. Imagine this simple (postgres) schema:
and we model this with go structs:
Now let's say we want to query the last chat messages, perhaps the most obvious way would be:
But reading this into the structure:
actually leads to silent corruption! (most likely due to the duplicate column names). Probably the correct behavior here would be to give an error, or assume that the duplicate fields would be in the order of "User" then "ChatMessage"
But ignoring that, trying to work around this and perhaps the cleanest way to write the query in the first place would actually be:
which you would expect to be able to read into the struct
However this gives an error? Perhaps this is something that should be supported?