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)