Skip to content

Commit f05f01b

Browse files
comments
1 parent 7e35c91 commit f05f01b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

bigframes/session/direct_gbq_execution.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@
2525

2626

2727
# used only in testing right now, BigQueryCachingExecutor is the fully featured engine
28-
# simplified, doest not do large >10 gb result queries, error handling, respect global config
29-
# or record metrics
28+
# simplified, doesnt not do large >10 gb result queries, error handling, respect global config
29+
# or record metrics. Also avoids caching, and most pre-compile rewrites, to better serve as a
30+
# reference for validating more complex executors.
3031
class DirectGbqExecutor(semi_executor.SemiExecutor):
3132
def __init__(self, bqclient: bigquery.Client):
3233
self.bqclient = bqclient

tests/system/small/engines/test_read_local.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
pytest.importorskip("polars")
2222

23+
# Polars used as reference as its fast and local. Generally though, prefer gbq engine where they disagree.
2324
REFERENCE_ENGINE = polars_executor.PolarsExecutor()
2425

2526

0 commit comments

Comments
 (0)