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):
886886 signature , input_types , output_type # type: ignore
887887 )
888888
889- remote_function_client = _function_client .FunctionClient (
889+ managed_function_client = _function_client .FunctionClient (
890890 dataset_ref .project ,
891891 bq_location ,
892892 dataset_ref .dataset_id ,
@@ -905,7 +905,7 @@ def wrapper(func):
905905 self ._try_delattr (func , "is_row_processor" )
906906 self ._try_delattr (func , "ibis_node" )
907907
908- bq_function_name = remote_function_client .provision_bq_managed_function (
908+ bq_function_name = managed_function_client .provision_bq_managed_function (
909909 func = func ,
910910 input_types = tuple (
911911 third_party_ibis_bqtypes .BigQueryType .from_ibis (type_ )
@@ -942,7 +942,7 @@ def wrapper(func):
942942 signature = (ibis_signature .input_types , ibis_signature .output_type ),
943943 ) # type: ignore
944944 func .bigframes_bigquery_function = (
945- remote_function_client .get_remote_function_fully_qualilfied_name (
945+ managed_function_client .get_remote_function_fully_qualilfied_name (
946946 bq_function_name
947947 )
948948 )
You can’t perform that action at this time.
0 commit comments