Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pgr_trsp_withPoints new signatures #2245

Closed
Tracked by #2238
cvvergara opened this issue Feb 4, 2022 · 0 comments
Closed
Tracked by #2238

pgr_trsp_withPoints new signatures #2245

cvvergara opened this issue Feb 4, 2022 · 0 comments
Labels
Milestone

Comments

@cvvergara
Copy link
Member

#2238

FROM:

pgr_trsp(sql text, source_edge integer, source_pos float8, target_edge integer, target_pos float8,
                  directed boolean, has_rcost boolean [,restrict_sql text]);
RETURNS SETOF (seq, id1, id2, cost)

TO

pgr_trsp_withPoints(Edges SQL, Restrictions sql, Points SQL, From vid, To vid [,directed][,driving_side][,details]) -- one to one
pgr_trsp_withPoints(Edges SQL, Restrictions sql, Points SQL, From vid, To vids [,directed][,driving_side][,details]) -- one to many
pgr_trsp_withPoints(Edges SQL, Restrictions sql, Points SQL, From vids, To vid [,directed][,driving_side][,details]) -- many to one
pgr_trsp_withPoints(Edges SQL, Restrictions sql, Points SQL, From vids, To vids [,directed][,driving_side][,details]) -- many to many
pgr_trsp_withPoints(Edges SQL, Restrictions sql, Points SQL, Combinations SQL [,directed][,driving_side][,details]) -- combinations
RETURNS SET OF (seq, path_seq, start_pid, end_pid, node, edge, cost, agg_cost)
@cvvergara cvvergara added the TRSP label Feb 4, 2022
@cvvergara cvvergara added this to the Release 3.4.0 milestone Feb 4, 2022
cvvergara added a commit that referenced this issue Feb 6, 2022
* [pgr_trsp_withPoints][SQL] Creating new signatures
* [pgr_trsp][SQL] Deprecating function
* [pgr_trsp_withPoints][C/C++] Creating code to handle function
* [trsp][C/C++] vertices can have negative values when they are points
* [pgr_trsp_withPoints][docqueries] adding queries intended for the documentation
* [pgr_trsp][docqueries] adding queries to help migration to nbew signature
* [pgr_trsp[docqueries] adding warning message
* [tools] adding additional tool for pgtap testing
* [trsp][pgtap] ignoring deprecated warning
* [pgr_trsp_withPoints] adding the tests that must pass
* [pgr_trsp_withPoints][build] adding code to the build
* [trsp] refining documentation
* [pgr_trsp_withPoints][doc] adding documentation of new function
* [trsp][doc] removing unused files
* [trsp] ignoring links that do not exist
* [trsp][docqueries] removing context and fixing a syntax error
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant