Conversation
560fdef to
882a394
Compare
|
hopefully #1963 can get in ahead of this, you can rebase on top of it, and then only your enhancement will be there, not the miscellaneous formatting changes too |
|
@ian-r-rose could you please rebase on top of master? i'll try to take a look at this soon |
|
@toryhaavik Sure thing. I still haven't gotten a decent test working for this, but should be able to take another look this week. |
e30b7c7 to
4c9a98b
Compare
|
Okay, this is ready for a look. The test failure doesn't seem related to me, but I could be wrong. |
|
@ian-r-rose I will review that today. if you have a time, could you rebase it on top of master? |
4c9a98b to
6591a9a
Compare
|
Rebased |
6591a9a to
3748ef9
Compare
1b59daa to
79bab94
Compare
|
@ian-r-rose I was meditating here about this .. and I think the use of @toryhaavik @cpcloud any thought here? |
|
@xmnlab I originally had this as In a sense, |
|
hey @ian-r-rose I opened a PR to your branch to illustrate my thoughts about this topic. I think we probably should create a data type for each of this types you are proposing. again, thanks for working on that :) |
xmnlab
left a comment
There was a problem hiding this comment.
LGTM! thanks @ian-r-rose for working on that.
|
@toryhaavik if you have time could you review this PR? also the test for Linux py35 already passed .. but here it didn't updated the status and merge is blocked. |
toryhaavik
left a comment
There was a problem hiding this comment.
This LGTM! I'm glad we settled on something closer to the real implementation than Any. i'll try to bump the tests to get them to pass.
|
i can't get the checks to run. no idea what to do to fix it. @ian-r-rose could you please amend your commit and force push? maybe that'll trigger a clean run of the CI |
JSON JSONB UUID data types
822f671 to
6a878b0
Compare
|
Sure thing, rebased! |
|
Thanks for the reviews and merge @xmnlab and @toryhaavik |
Fixes ibis-project#1944. This does *not* add support for JSON, JSONB, and UUID PostgreSQL types. Instead, it marks them as having `dt.Any` type, allowing the tables to be loaded, and those columns mostly ignored. There is also some black formatting on some lines I didn't touch... Author: Ian Rose <ian.r.rose@gmail.com> Author: Ivan Ogasawara <ivan.ogasawara@gmail.com> Closes ibis-project#1962 from ian-r-rose/json-uuid-any and squashes the following commits: 6a878b0 [Ian Rose] Merge pull request #1 from Quansight/json-uuid-any 298efc2 [Ivan Ogasawara] Added JSON JSONB and UUID data types. 79bab94 [Ian Rose] Move test to postgres client test suite. 3748ef9 [Ian Rose] Add some light type testing for json, jsonb, uuid. b514069 [Ian Rose] Allow postgres client to read tables with UUID, JSON, JSONB types.
Fixes #1944. This does not add support for JSON, JSONB, and UUID PostgreSQL types. Instead, it marks them as having
dt.Anytype, allowing the tables to be loaded, and those columns mostly ignored.There is also some black formatting on some lines I didn't touch...