Definition at line 313 of file TableFunctionsFactory.cpp.
Referenced by table_functions::TableFunctionsFactory::add().
316 static const std::unordered_set<std::string> whitelisted_table_functions = {
318 "generate_random_strings",
320 "tf_mandelbrot_float",
321 "tf_mandelbrot_cuda",
322 "tf_mandelbrot_cuda_float",
324 "tf_geo_rasterize_slope",
325 "tf_compute_dwell_times",
326 "tf_feature_similarity",
327 "tf_feature_self_similarity",
328 "tf_graph_shortest_path",
329 "tf_graph_shortest_paths_distances",
330 "tf_raster_graph_shortest_slope_weighted_path",
331 "supported_ml_frameworks",
335 "linear_reg_predict",
336 "linear_reg_fit_predict",
337 "tf_point_cloud_metadata",
338 "tf_load_point_cloud"
339 #ifdef HAVE_OMNIVERSE_CONNECTOR
341 "tf_export_ov_terrain_texture",
342 "tf_export_ov_buildings_texture",
343 "tf_export_ov_polygons_2d",
344 "tf_export_ov_polygons_3d",
345 "tf_export_ov_grid_mesh"
349 return whitelisted_table_functions.find(function_name) !=
350 whitelisted_table_functions.end();