-
Notifications
You must be signed in to change notification settings - Fork 184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix mapping of MAP types with boolean or integer keys #441
Conversation
6446f7f
to
c74f251
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good
if str(value).lower() == 'true': | ||
return True | ||
if str(value).lower() == 'false': | ||
return False |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is there a way to avoid this and return map keys as boolean instead?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Technically yes, but it's much harder to do on server. There's already some code FixJsonDataUtils
which tries to handle some of this but it doesn't work well or is easy to do for structural types.
# structural types - note that none of these below tests work in the Trino JDBC Driver either. | ||
# Unhashable types like lists and dicts cannot be used as keys so these values cannot be represented as Python | ||
# objects at all. | ||
# .add_field(sql="MAP(ARRAY[ARRAY[1, 2]], ARRAY[null])", python={[1, 2]: None}) | ||
# .add_field(sql="MAP(ARRAY[MAP(ARRAY[1], ARRAY[2])], ARRAY[null])", python={{1: 2}: None}) | ||
|
||
# TODO: fails because server sends [[{"[1, 2]":null}]] as response whereas it sends [[[1,2]]] as response for ROW | ||
# types that are not enclosed in a MAP while the RowValueMapper expects values to be lists. | ||
# .add_field(sql="MAP(ARRAY[ROW(1, 2)], ARRAY[CAST(null AS VARCHAR)])", python={(1, 2): None}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
follow-up issue for the TODO?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This uncovers a few bugs in the handling of map with boolean, integer or row keys which will be fixed in a future commit.
c74f251
to
4706b05
Compare
Description
Fix mapping of MAP types with boolean or integer keys.
This is on top of #440 so only last 3 commits need to be reviewed.
Release notes
(x) Release notes are required, with the following suggested text:
* Fix mapping of MAP types with boolean or integer keys.