We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 562fa56 commit 2f24b23Copy full SHA for 2f24b23
1 file changed
packages/bigframes/bigframes/session/proxy_executor.py
@@ -102,6 +102,7 @@ def to_sql(
102
enable_cache=enable_cache,
103
)
104
# stable or legacy use ibis
105
+ # TODO(b/510408650): Use sqlglot by default.
106
return self._ibis_executor.to_sql(
107
array_value,
108
offset_column=offset_column,
@@ -151,6 +152,7 @@ def dry_run(
151
152
153
Does not actually execute the data but will get stats and indicate any invalid query errors.
154
"""
155
+ # TODO(b/510408650): Use sqlglot for dry runs when sqlglot has been validated.
156
return self._ibis_executor.dry_run(array_value, ordered=ordered)
157
158
def cached(
0 commit comments