From f86884f9244f3813fe6b134b96345e95d009ac38 Mon Sep 17 00:00:00 2001 From: Eduardo Blancas Date: Thu, 7 Nov 2024 09:34:06 -0600 Subject: [PATCH] adds note --- doc/integrations/duckdb.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/doc/integrations/duckdb.md b/doc/integrations/duckdb.md index fe45d0b05..6e09d9c95 100644 --- a/doc/integrations/duckdb.md +++ b/doc/integrations/duckdb.md @@ -265,6 +265,14 @@ df = pd.DataFrame({"x": range(100)}) %sql engine ``` +```{important} +If you're using DuckDB 1.1.0 or higher, you must run this before querying a data frame + +~~~sql +%sql SET python_scan_all_frames=true +~~~ +``` + ```{code-cell} ipython3 %%sql SELECT *