File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -886,7 +886,7 @@ def wrapper(func):
886
886
signature , input_types , output_type # type: ignore
887
887
)
888
888
889
- remote_function_client = _function_client .FunctionClient (
889
+ managed_function_client = _function_client .FunctionClient (
890
890
dataset_ref .project ,
891
891
bq_location ,
892
892
dataset_ref .dataset_id ,
@@ -905,7 +905,7 @@ def wrapper(func):
905
905
self ._try_delattr (func , "is_row_processor" )
906
906
self ._try_delattr (func , "ibis_node" )
907
907
908
- bq_function_name = remote_function_client .provision_bq_managed_function (
908
+ bq_function_name = managed_function_client .provision_bq_managed_function (
909
909
func = func ,
910
910
input_types = tuple (
911
911
third_party_ibis_bqtypes .BigQueryType .from_ibis (type_ )
@@ -942,7 +942,7 @@ def wrapper(func):
942
942
signature = (ibis_signature .input_types , ibis_signature .output_type ),
943
943
) # type: ignore
944
944
func .bigframes_bigquery_function = (
945
- remote_function_client .get_remote_function_fully_qualilfied_name (
945
+ managed_function_client .get_remote_function_fully_qualilfied_name (
946
946
bq_function_name
947
947
)
948
948
)
You can’t perform that action at this time.
0 commit comments