Jing Wang
Jing Wang
Not sure what you're requesting. Complex types work: https://github.com/dropbox/PyHive/blob/master/pyhive/tests/test_hive.py#L41 Are you asking for support for parsing the result strings into something nicer?
If you meant Presto, that currently returns a struct as a list: https://github.com/dropbox/PyHive/blob/master/pyhive/tests/test_presto.py#L76 If you meant Hive, that returns strings: https://github.com/dropbox/PyHive/blob/master/pyhive/tests/test_hive.py#L65 We could add a flag parse_complex_types to the connection...
Sorry, there is no code for HTTP mode.
Sorry, haven't forgotten about this. Will take a look next week.
Sorry, I have no idea about windows stuff. (I've only ever tried linux) On Thu, Nov 19, 2015 at 12:52 PM, Evan McClain [email protected] wrote: > Using Anaconda2 with sasl...
Spark thrift claims to be compatible with Hive, so I think the correct fix is to edit the spark code. But if they don't want to match Hive, the next...
Nice, that sounds easier than what I was thinking :)
I guess that'll break if someone decides to add another column (maybe `show tables` includes the table comment some day). Oh well. Both approaches I can think of (column names,...
I guess that leaves us with having a list of possible column names. #68 changed from row.tab_name to row[0] due to some incompatibility. We could crawl through the Hive/Spark source...
That feels fragile / magical to me :/