Alan Schelten

Results 10 issues of Alan Schelten

This is not the kind of issue I like to write, because I have no minimal example with a reproducible error. Still, perhaps the information I have tells you something:...

I have dataset of parquet files with strings. However these do not have the 'converted_type' or 'logicalType' schema property so the type detection 'is_logical_string' returns false. This could be easily...

Currently this fails when trying to read from HDFS using Elly with "No such file or directory": ``` using Elly using Parquet dfs = HDFSClient() path = "/tmp/dataset/" read_parquet(HDFSFile(dfs, path))...

Is there a simple way to support auth=noSasl in this library? JDBC supports this: jdbc:hive2://impala_server:21050/db/;auth=noSasl

Thanks for this project! There was an indenting typo leading to an error: UnboundLocalError: local variable 'cb' referenced before assignment. Could you merge and push to pipy otherwise I can't...

The documentation implies that it is possible to use flatc to generate julia code. However, I don't see how to do this and the pull request at google has not...

Thanks for this package! Calling `hash` on a Decimal fails in julia 1.5.3: ```julia> using Decimals julia> p =parse(Decimal, "0.1") Decimal(0, 1, -1) julia> hash(p) ERROR: MethodError: no method matching...

Elly tries to access the internal Base method Base.write_sub in rpc.jl:861 This leads to an UndefVarError in julia 1.7.2: ``` ERROR: UndefVarError: write_sub not defined Stacktrace: [1] getproperty @ ./Base.jl:35...

This is a first prototype at solving #15 I am not sure whether the API is a good choice, but it might be a basis for discussion. Also not sure...

I have a use case where the file I would be writing to or reading from is too large to be in memory. However I only need to access one...