arrow_graph/sql/
functions.rs1use datafusion_expr::ScalarUDF;
2
3pub fn shortest_path_udf() -> ScalarUDF {
4 todo!("Create shortest_path SQL function")
5}
6
7pub fn all_paths_udf() -> ScalarUDF {
8 todo!("Create all_paths SQL function")
9}
10
11pub fn betweenness_centrality_udf() -> ScalarUDF {
12 todo!("Create betweenness_centrality SQL function")
13}
14
15pub fn pagerank_udf() -> ScalarUDF {
16 todo!("Create pagerank SQL function")
17}
18
19pub fn community_detection_udf() -> ScalarUDF {
20 todo!("Create community_detection SQL function")
21}
22
23pub fn graph_density_udf() -> ScalarUDF {
24 todo!("Create graph_density SQL function")
25}
26
27pub fn clustering_coefficient_udf() -> ScalarUDF {
28 todo!("Create clustering_coefficient SQL function")
29}