This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create or replace function pgr_graphviz(edge_table text, | |
eid text default 'id', | |
source text default 'source', | |
target text default 'target', | |
oneway text default '', | |
ft text[] default array['FT']::text[], | |
tf text[] default array['TF']::text[], | |
where_clause text default 'true', | |
nodepos bool default false) | |
returns text as |