Thijs

Results 416 comments of Thijs

Interesting, I guess it's not that useful currently anyways until lands

@Mytherin should I add support for replacement scans to DESCRIBE before this gets merged, or are we fine with this regression in behavior for now? I should probably rewrite the...

Ah.. seems I didn't test this enough, registered objects do not take precedence over temporary views, which is a different behavior than before. That is kind of the issue this...

@MarcSkovMadsen the problem here probably originates from this lovely piece of code: https://fossies.org/dox/openslides-2.3-portable/tzinfo_8py_source.html#l00396 Specifically: ```py if dt is None: return None ``` We are dealing with a tzinfo object which...

That sounds sensible, splitting the traffic that is currently all hitting the same atomic 👍 I wonder if we even need to treat these as caches, can't we just sum...

`fetch_arrow_reader` creates a StreamQueryResult, which starts query execution and keeps query execution occupied until the result is fully consumed. Currently it is not possible to have multiple queries executing on...

You can, but not while streaming. Perhaps we could add a boolean to `fetch_arrow_reader` to materialize the result entirely, though that doesn't directly help you right now

Yea that makes sense to me, I was also a little surprised it didn't error

It might be unrelated, but I had a run-in with IEEE nan spec quirks and this reminded me of it, here's the PR that addressed it: ``` D select a::double...

@soobrosa You can also use this in reverse, I think it's worth checking if your dataset contains different variations of NaN, for debugging purposes: ```sql D select 'nan'::double::BITSTRING; ┌──────────────────────────────────────────────────────────────────┐ │...