Something weird happening here, possibly a bug wit...
# give-feedback
b
Something weird happening here, possibly a bug with the query being generated(?)
1
On the latter table, the top 4 lines seem to have duplication - should there only be one row for each variation + dimension combination?
generated query.sql
f
Yes, there should be only 1 row. My guess is there are 2 different dimension values that are both being serialized to an empty string. Like maybe both
null
and an empty string.
b
exp_19g61ol9wwjibq
- welcome to look at it
hmm yeah, the original data type is actually an array - I think it can be an empty array or null
f
I'll add a GitHub issue to fix that in the query by adding an
IFNULL
check (or similar). In the meantime, you can probably add the same to your dimension column to fix the error
b
nice, that fixed it 🙂 thank you