kaknikhil commented on a change in pull request #483: Graph/type bigint
URL: https://github.com/apache/madlib/pull/483#discussion_r386580519
 
 

 ##########
 File path: src/ports/postgres/modules/graph/test/wcc.sql_in
 ##########
 @@ -190,4 +190,5 @@ ALTER TABLE vertex RENAME COLUMN dest TO id;
 CREATE TABLE v2 AS SELECT id::bigint FROM vertex;
 CREATE TABLE e2 AS SELECT src_node::bigint, dest_node::bigint FROM "EDGE";
 
-SELECT 
weakly_connected_components('v2',NULL,'e2','src=src_node,dest=dest_node','out2');
+DROP TABLE IF EXISTS public.out2, public.out2_summary;
+SELECT 
weakly_connected_components('v2',NULL,'e2','src=src_node,dest=dest_node','public.out2');
 
 Review comment:
   we should add the same tests for all the functions in the measures module
   1. graph_closeness
   1. graph_avg_path_length
   1. graph_diameter
   1. graph_vertex_degrees
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to