Carl Jackson

Results 11 comments of Carl Jackson

I've been running that diff for a month or so now and it seems to fix things for me 🤷

After spending some more time reading the source, I think this may be a race condition between closing the `Database` and opening a new `Connection`

We ended up not using the use case (because of this bug!), but we had a server that created a database for every request, and closed the db when the...

You ought to be able to use `#stdout` as you would a normal `IO`—the way you'd normally read a file ought to work for subprocess as well.

Oh interesting! It looks like Arrow is inferring dictionaries for strings in `tableFromArrays` instead of plain values, which your example parquet file uses: https://github.com/apache/arrow/blob/e766828c699c6c74eba3b8c5de99e541017b8b9e/js/src/factories.ts#L142 I think I can work around...

Agreed! FWIW, working around this by inferring the type `Utf8` for strings (instead of `Dictionary`) is a decent workaround!

At a guess, during a `SystemStackError` we have extremely few stack frames to work with (since the stack is yet to be unwound), and _something_ (my guess is https://github.com/ConradIrwin/interception/blob/master/lib/interception.rb#L104-L106) in...

...we really need automated tests :/

This is one of the things I miss most from vim, so I tried to implement it: https://github.com/zenazn/zed/commit/d05af0b66ebeb45462a17b4fb640645c64b7f5ed The implementation is definitely incomplete, but the basic gist of it is...