FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

fixing module_pathname macro · PostGraphDB/pgrouting@23148ae · GitHub

Commit 23148ae

Browse files
committed
fixing module_pathname macro
1 parent 9824b1d commit 23148ae

12 files changed

Lines changed: 189 additions & 11 deletions

‎VERSION‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7216-19e7d01 release/2.6
1+
7217-cbb74d8 release/2.6

‎sql/components/articulationPoints.sql‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ CREATE OR REPLACE FUNCTION pgr_articulationPoints(
3333
OUT node BIGINT) -- the number of the node
3434

3535
RETURNS SETOF RECORD AS
36-
'$MODULE_PATHNAME}', 'articulationPoints'
36+
'${MODULE_PATHNAME}', 'articulationPoints'
3737
LANGUAGE c IMMUTABLE STRICT;
3838

‎sql/components/biconnectedComponents.sql‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ CREATE OR REPLACE FUNCTION pgr_biconnectedComponents(
3535
OUT edge BIGINT) -- the number of the edge
3636

3737
RETURNS SETOF RECORD AS
38-
'$MODULE_PATHNAME', 'biconnectedComponents'
38+
'${MODULE_PATHNAME}', 'biconnectedComponents'
3939
LANGUAGE c IMMUTABLE STRICT;
4040

‎sql/components/bridges.sql‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ CREATE OR REPLACE FUNCTION pgr_bridges(
3333
OUT edge BIGINT) -- the number of the edge
3434

3535
RETURNS SETOF RECORD AS
36-
'$MODULE_PATHNAME', 'bridges'
36+
'${MODULE_PATHNAME}', 'bridges'
3737
LANGUAGE c IMMUTABLE STRICT;
3838

‎sql/components/connectedComponents.sql‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ CREATE OR REPLACE FUNCTION pgr_connectedComponents(
3535
OUT node BIGINT) -- the number of the node
3636

3737
RETURNS SETOF RECORD AS
38-
'$MODULE_PATHNAME', 'connectedComponents'
38+
'${MODULE_PATHNAME}', 'connectedComponents'
3939
LANGUAGE c IMMUTABLE STRICT;
4040

‎sql/components/strongComponents.sql‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ CREATE OR REPLACE FUNCTION pgr_strongComponents(
3535
OUT node BIGINT) -- the number of the node
3636

3737
RETURNS SETOF RECORD AS
38-
'$MODULE_PATHNAME', 'strongComponents'
38+
'${MODULE_PATHNAME}', 'strongComponents'
3939
LANGUAGE c IMMUTABLE STRICT;
4040

‎sql/costFlow/minCostMaxFlow.sql‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ CREATE OR REPLACE FUNCTION _pgr_minCostMaxFlow(
4646
OUT agg_cost FLOAT) -- total cost
4747

4848
RETURNS SETOF RECORD AS
49-
'$MODULE_PATHNAME', 'minCostMaxFlow_many_to_many'
49+
'${MODULE_PATHNAME}', 'minCostMaxFlow_many_to_many'
5050
LANGUAGE c IMMUTABLE STRICT;

‎sql/dagShortestPath/_dagShortestPath.sql‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ CREATE OR REPLACE FUNCTION _pgr_dagShortestPath(
4141
OUT agg_cost FLOAT)
4242

4343
RETURNS SETOF RECORD AS
44-
'$MODULE_PATHNAME', 'dagShortestPath'
44+
'${MODULE_PATHNAME}', 'dagShortestPath'
4545
LANGUAGE c IMMUTABLE STRICT;
4646

‎sql/ksp/turnRestrictedPath.sql‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,5 @@ CREATE OR REPLACE FUNCTION pgr_turnRestrictedPath(
4747
OUT agg_cost FLOAT)
4848

4949
RETURNS SETOF RECORD AS
50-
'$MODULE_PATHNAME', 'turnRestrictedPath'
50+
'${MODULE_PATHNAME}', 'turnRestrictedPath'
5151
LANGUAGE c IMMUTABLE STRICT;

‎sql/lineGraph/lineGraph.sql‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ CREATE OR REPLACE FUNCTION pgr_lineGraph(
3737
OUT reverse_cost FLOAT)
3838

3939
RETURNS SETOF RECORD AS
40-
'$MODULE_PATHNAME', 'lineGraph'
40+
'${MODULE_PATHNAME}', 'lineGraph'
4141
LANGUAGE c IMMUTABLE STRICT;

0 commit comments

Comments
 (0)

Back | FazBrowse Home | New Git URL