File tree 7 files changed +19
-6
lines changed 7 files changed +19
-6
lines changed Original file line number Diff line number Diff line change
1
+ # Copyright 2024 Google LLC
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
File renamed without changes.
Original file line number Diff line number Diff line change 74
74
import bigframes .core .utils as utils
75
75
import bigframes .dataframe as dataframe
76
76
import bigframes .formatting_helpers as formatting_helpers
77
- from bigframes .remote_function import read_gbq_function as bigframes_rgf
78
- from bigframes .remote_function import remote_function as bigframes_rf
77
+ from bigframes .functions . remote_function import read_gbq_function as bigframes_rgf
78
+ from bigframes .functions . remote_function import remote_function as bigframes_rf
79
79
import bigframes .session ._io .bigquery as bigframes_io
80
80
import bigframes .session .clients
81
81
import bigframes .version
Original file line number Diff line number Diff line change 28
28
import test_utils .prefixer
29
29
30
30
import bigframes
31
- from bigframes .remote_function import (
31
+ from bigframes .functions . remote_function import (
32
32
get_cloud_function_name ,
33
33
get_remote_function_locations ,
34
34
)
Original file line number Diff line number Diff line change 17
17
import pytest
18
18
19
19
import bigframes
20
- from bigframes import remote_function as rf
20
+ from bigframes . functions import remote_function as rf
21
21
from tests .system .utils import assert_pandas_df_equal
22
22
23
23
Original file line number Diff line number Diff line change @@ -241,7 +241,7 @@ def test_literal_to_ibis_scalar_throws_on_incompatible_literal():
241
241
def test_remote_function_io_types_are_supported_bigframes_types ():
242
242
from ibis .expr .datatypes .core import dtype as python_type_to_bigquery_type
243
243
244
- from bigframes .remote_function import (
244
+ from bigframes .functions . remote_function import (
245
245
SUPPORTED_IO_PYTHON_TYPES as rf_supported_io_types ,
246
246
)
247
247
Original file line number Diff line number Diff line change 15
15
from ibis .backends .bigquery import datatypes as bq_types
16
16
from ibis .expr import datatypes as ibis_types
17
17
18
- from bigframes import remote_function as rf
18
+ from bigframes . functions import remote_function as rf
19
19
20
20
21
21
def test_supported_types_correspond ():
You can’t perform that action at this time.
0 commit comments