Eduardo Blancas
Eduardo Blancas
I'm clearing the issue assignment since it's not a priority
ok, so the problem is that we still have some notebooks that have code in markdown cells, which aren't executed. let's find those, then we can decide which ones we...
this error is weird, we often get syntax errors but this is saying the table doesn't exist. let's find out the root cause, and decide if we want to fix...
seems like you need a few functions calls to make this work, so I'm unsure how this could work out of the box. can you provide more detail? how are...
makes sense. I'm unsure what you mean by *out of the box*, how would you expect this to work?
Thanks for your feedback! We set a global config file because this controls telemetry on all our projects; this allows users to shut it down globally. I just realized we...
please don't hesitate to reach out if you have any concerns. telemetry helps us understand usage but it comes second after user experience!
I tried this with duckdb 1.0.0 and it works: ``` In [1]: import pandas as pd In [2]: df = pd.DataFrame({"x":range(10)}) In [3]: df Out[3]: x 0 0 1 1...
@eitsupi since DuckDB change its default behavior, I think we should follow (as opposed to arbitrarily running `set python_scan_all_frames=true` on the user's behalf. I'll update the docs so people know...
I spent some time looking into this: when using sqlalchemy, `set python_scan_all_frames=true` fixes the issue: ```python In [1]: %load_ext sql In [2]: import pandas as pd; df = pd.DataFrame({"x": range(10)});...