Thijs

Results 416 comments of Thijs

I had hopes that would fix this without needing to deduplicate bindings, but alas The problem that remains is that we have this structure: ``` "join": { "join": { "df":...

@Mytherin This shouldn't be related, might be good to rerun the check though:

To answer a TODO that was left in the code by this PR: ```py if result == 3: # TODO - what is this magic number? callback() ``` The answer...

No binaries are produced yet for 1.3.1 nightly builds The DuckLake extension needs duckdb>=1.3.0, it can't be built for 1.2.2

I believe this needs to be `IN (?)` The docs are pretty clear in case you need further details

@soerenwolfers if I understand this correctly, using `iloc` will swap the positions of the columns in the DataFrame. You are aliasing the columns `b(key, match, value)` Meaning `execute_query(b1)` and `execute_query(b2)`...

I can't reproduce this on nightly, so I hope the release of v1.4.0 (next monday is the ETA for that) should fix this problem for you If it doesn't, feel...

I experience the same `memory_profiler` results, but when I plug this into Instruments, both Allocations and Leaks I don't see anything unexpected

I looked into this further, and it looks like `inspect.currentframe().f_locals` + `f_globals` is responsible for this which feels like a bug in python: ```py import numpy as np import pandas...