Skip to content

Commit 731a652

Browse files
revert unintended query error handling change
1 parent 424e84a commit 731a652

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bigframes/session/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1919,7 +1919,7 @@ def _start_query(
19191919
new_message = "Computation is too complex to execute as a single query. Try using DataFrame.cache() on intermediate results, or setting bigframes.options.compute.enable_multi_query_execution."
19201920
raise bigframes.exceptions.QueryComplexityError(new_message) from e
19211921
else:
1922-
raise ValueError(sql)
1922+
raise
19231923

19241924
def _start_query_ml_ddl(
19251925
self,

0 commit comments

Comments
 (0)