Skip to content

Commit 76e72d6

Browse files
committed
add comments
1 parent 98f07e2 commit 76e72d6

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

bigframes/bigquery/__init__.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,17 @@
5757
from bigframes.core import log_adapter
5858

5959
_functions = [
60+
# approximate aggregate ops
6061
approx_top_count,
62+
# array ops
6163
array_agg,
6264
array_length,
6365
array_to_string,
66+
# datetime ops
6467
unix_micros,
6568
unix_millis,
6669
unix_seconds,
70+
# geo ops
6771
st_area,
6872
st_buffer,
6973
st_centroid,
@@ -73,6 +77,7 @@
7377
st_intersection,
7478
st_isclosed,
7579
st_length,
80+
# json ops
7681
json_extract,
7782
json_extract_array,
7883
json_extract_string_array,
@@ -82,9 +87,12 @@
8287
json_value,
8388
json_value_array,
8489
parse_json,
90+
# search ops
8591
create_vector_index,
8692
vector_search,
93+
# sql ops
8794
sql_scalar,
95+
# struct ops
8896
struct,
8997
]
9098

0 commit comments

Comments
 (0)