@@ -142,7 +142,7 @@ def resourcemanager_client(
142142
143143@pytest .fixture (scope = "session" )
144144def session () -> Generator [bigframes .Session , None , None ]:
145- context = bigframes .BigQueryOptions (location = "US" , allow_large_results = False )
145+ context = bigframes .BigQueryOptions (location = "US" )
146146 session = bigframes .Session (context = context )
147147 yield session
148148 session .close () # close generated session at cleanup time
@@ -158,19 +158,15 @@ def session_load() -> Generator[bigframes.Session, None, None]:
158158
159159@pytest .fixture (scope = "session" , params = ["strict" , "partial" ])
160160def maybe_ordered_session (request ) -> Generator [bigframes .Session , None , None ]:
161- context = bigframes .BigQueryOptions (
162- location = "US" , ordering_mode = request .param , allow_large_results = False
163- )
161+ context = bigframes .BigQueryOptions (location = "US" , ordering_mode = request .param )
164162 session = bigframes .Session (context = context )
165163 yield session
166164 session .close () # close generated session at cleanup type
167165
168166
169167@pytest .fixture (scope = "session" )
170168def unordered_session () -> Generator [bigframes .Session , None , None ]:
171- context = bigframes .BigQueryOptions (
172- location = "US" , ordering_mode = "partial" , allow_large_results = False
173- )
169+ context = bigframes .BigQueryOptions (location = "US" , ordering_mode = "partial" )
174170 session = bigframes .Session (context = context )
175171 yield session
176172 session .close () # close generated session at cleanup type
@@ -1419,7 +1415,7 @@ def floats_product_bf(session, floats_product_pd):
14191415
14201416@pytest .fixture (scope = "session" , autouse = True )
14211417def use_fast_query_path ():
1422- with bpd .option_context ("bigquery .allow_large_results" , False ):
1418+ with bpd .option_context ("compute .allow_large_results" , False ):
14231419 yield
14241420
14251421
0 commit comments