Dennis Collinson

Results 15 comments of Dennis Collinson

Has anyone figured out any ways to mitigate this issue?

@doudou I took a crack at it but failed to produce anything of value, I'm stoked to pass the reigns!

I've made a library to test recoil at the hook-level, to allow testing of data an async effects in isolation. [dnsco/recoil-test-render-hooks](https://github.com/dnsco/recoil-test-render-hooks/) if this helps anyone. It's very similar to [inturn/react-recoil-hooks-testing-library](https://github.com/inturn/react-recoil-hooks-testing-library)...

I changed my approach to testing at the hook level to allow testing of async effects. I've made a library to provide testing contexts (essentially rendering hooks in a RecoilBridge'd...

I was just fighting with something similar for a few hours. I think what I've figures out is that snapshots are immutable, and effects happen asynchronously, but ```asyncMap``` provides a...

Thanks for pointing me in the right direction!

going down the rabbit hole: I found that there apparently is some schema conversion that happens in python and I gess not rust https://github.com/delta-io/delta-rs/blob/1dba7e5a2d39b42a58abd83f0805524c59ceda1c/python/deltalake/schema.py#L19 Apparently every column in deltalake has...

So I guess to use this library from rust requires your arrow schema be delta-compatible :'(

It also seems likely that the number 170 pyarrow u8 recordbatch would cause errors in python.

I opened a related issue on the anyhow side: https://github.com/dtolnay/anyhow/issues/89. would a pull_request for a ```from_anyhow``` constructor so you didn't have to drop down to ```from_str``` and loose the backtrace...