Jacob Quinn

Results 513 comments of Jacob Quinn

Ok, I've got a fix; just need to figure out an apparent version mismatch between Arrow/ArrowTypes.

I went ahead and rebased

I think it's worth looking into; I've had success w/ other packages. The main concern is when things are changing really fast which can "invalidate" existing precompilation statements if method...

Hmmmm, yes, this is tricky to diagnose. The `ReadOnlyMemoryError` and pyarrow seem to suggest that the `Arrow.Primitive` may be pointing to invalid memory; i.e. there's only 1000 bytes to read...

Currently there's no interface for interacting with a plasma store. From a quick look at what plasma is, it sounds like it would be pretty easy to make a generic...

@dlakelan, it sounds to me like there might be some bad quoting in your file. The limits when you would hit this bug are: * Greater than ~1MB for an...

Sorry for the slow response here; yes, I can see how this is a bit confusing, but when you provide the `header`, it _is_ expected that you're providing all the...

Marking as 1.X milestone, meaning I don't plan on implementing this before 1.0 release (which will happen soon). I was originally hoping https://github.com/JuliaLang/julia/pull/32859 would land in a reasonable amount of...

In this example though, the `g` columns actually corresponds to the last `test1` values. So you're telling the parser to drop the `test1` values, and then it encounters the last...

> In addition drop=[1,2,3] works but drop=[1:3] does not work. Note that `drop=[1:3]` creates a `Vector{UnitRange}`, i.e. it doesn't expand the range. This would work `drop=collect(1:3)`, or `drop=1:3`. Hmmm, I...