Skip to content

Commit

Permalink
[astar][sql] Added v3.2 before new function
Browse files Browse the repository at this point in the history
  • Loading branch information
krashish8 committed Nov 17, 2020
1 parent b09d862 commit af0cee2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion sql/astar/_astar.sql
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ RETURNS SETOF RECORD AS
LANGUAGE c VOLATILE STRICT;


CREATE OR REPLACE FUNCTION _pgr_astar(
--v3.2
CREATE FUNCTION _pgr_astar(
edges_sql TEXT, -- XY edges sql
combinations_sql TEXT,

Expand Down
4 changes: 2 additions & 2 deletions sql/astar/astar.sql
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ COST 100
ROWS 1000;


-- Combanations SQL signature
CREATE OR REPLACE FUNCTION pgr_aStar(
--v3.2
CREATE FUNCTION pgr_aStar(
TEXT, -- edges sql (required)
TEXT, -- combinations_sql (required)

Expand Down
3 changes: 2 additions & 1 deletion sql/astar/astarCost.sql
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,8 @@ COST 100
ROWS 1000;


CREATE OR REPLACE FUNCTION pgr_aStarCost(
--v3.2
CREATE FUNCTION pgr_aStarCost(
TEXT, -- edges sql (required)
TEXT, -- combinations_sql (required)

Expand Down

0 comments on commit af0cee2

Please sign in to comment.