From b61c3634a85927082b088042aed24ade98a6371a Mon Sep 17 00:00:00 2001 From: Phillip Cloud <417981+cpcloud@users.noreply.github.com> Date: Sun, 17 Sep 2023 12:15:59 -0400 Subject: [PATCH] chore: slightly better comment --- ibis/backends/duckdb/compiler/relations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ibis/backends/duckdb/compiler/relations.py b/ibis/backends/duckdb/compiler/relations.py index fcaa47822ddd1..98192c70b8117 100644 --- a/ibis/backends/duckdb/compiler/relations.py +++ b/ibis/backends/duckdb/compiler/relations.py @@ -255,7 +255,7 @@ def _fillna(op: ops.FillNa, *, table, **kw): @translate_rel.register def _view(op: ops.View, *, child, name: str, **_): - # TODO: find a better way to do this + # TODO: find a way to do this without creating a temporary view backend = op.child.to_expr()._find_backend() backend._create_temp_view(table_name=name, source=sg.select("*").from_(child)) return sg.table(name)