@@ -63,7 +63,7 @@ def get_remote_function_locations(bq_location):
6363 return bq_location , cloud_function_region
6464
6565
66- def _get_updated_package_requirements (
66+ def get_updated_package_requirements (
6767 package_requirements = None ,
6868 is_row_processor = False ,
6969 capture_references = True ,
@@ -105,7 +105,7 @@ def _get_updated_package_requirements(
105105 return requirements
106106
107107
108- def _clean_up_by_session_id (
108+ def clean_up_by_session_id (
109109 bqclient : bigquery .Client ,
110110 gcfclient : functions_v2 .FunctionServiceClient ,
111111 dataset : bigquery .DatasetReference ,
@@ -169,7 +169,7 @@ def _clean_up_by_session_id(
169169 pass
170170
171171
172- def _get_hash (def_ , package_requirements = None ):
172+ def get_hash (def_ , package_requirements = None ):
173173 "Get hash (32 digits alphanumeric) of a function."
174174 # There is a known cell-id sensitivity of the cloudpickle serialization in
175175 # notebooks https://github.com/cloudpipe/cloudpickle/issues/538. Because of
@@ -279,7 +279,7 @@ def get_python_version(is_compat: bool = False) -> str:
279279 return f"python{ major } { minor } " if is_compat else f"python-{ major } .{ minor } "
280280
281281
282- def _build_unnest_post_routine (py_list_type : type [list ]):
282+ def build_unnest_post_routine (py_list_type : type [list ]):
283283 sdk_type = function_typing .sdk_array_output_type_from_python_type (py_list_type )
284284 assert sdk_type .array_element_type is not None
285285 inner_sdk_type = sdk_type .array_element_type
0 commit comments