Skip to content

Commit

Permalink
[topology] text -> record
Browse files Browse the repository at this point in the history
  • Loading branch information
cvvergara committed Nov 27, 2022
1 parent 97d1a58 commit 1b4535c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ milestone for 3.4.2

* [#2394](https://github.com/pgRouting/pgrouting/issues/2394):
pgr_bdAstar accumulates heuristic cost in visited node cost.
* [#2427](https://github.com/pgRouting/pgrouting/issues/2427):
pgr_createVerticesTable & pgr_createTopology, variable should be of type Record.

pgRouting 3.4.1 Release Notes
-------------------------------------------------------------------------------
Expand Down
2 changes: 2 additions & 0 deletions doc/src/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ milestone for 3.4.2

* `#2394 <https://github.com/pgRouting/pgrouting/issues/2394>`__:
pgr_bdAstar accumulates heuristic cost in visited node cost.
* `#2427 <https://github.com/pgRouting/pgrouting/issues/2427>`__:
pgr_createVerticesTable & pgr_createTopology, variable should be of type Record.

pgRouting 3.4.1 Release Notes
-------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion sql/topology/createtopology.sql
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ DECLARE
sourcetype TEXT;
targettype TEXT;
debuglevel TEXT;
dummyRec TEXT;
dummyRec record;
fnName TEXT;
err bool;
msgKind int;
Expand Down
2 changes: 1 addition & 1 deletion sql/topology/createverticestable.sql
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ DECLARE
notincluded INTEGER;
included INTEGER;
debuglevel TEXT;
dummyRec TEXT;
dummyRec record;
fnName TEXT;
err bool;

Expand Down

0 comments on commit 1b4535c

Please sign in to comment.