Skip to content

Commit f6bf009

Browse files
committed
fix: we won't include an upgrade of pgrouting quite yet
1 parent b53a3a3 commit f6bf009

File tree

5 files changed

+93
-199
lines changed

5 files changed

+93
-199
lines changed

nix/ext/versions.json

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -153,13 +153,6 @@
153153
"17"
154154
],
155155
"hash": "sha256-QC77AnPGpPQGEWi6JtJdiNsB2su5+aV2pKg5ImR2B0k="
156-
},
157-
"3.8.0": {
158-
"postgresql": [
159-
"15",
160-
"17"
161-
],
162-
"hash": "sha256-Lvf7TQ3GywbzZmcd9wi3s8I5sCXIQAPeXNTRk/J46to="
163156
}
164157
},
165158
"pgsodium": {

nix/tests/expected/pgrouting.out

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ select * from pgr_dijkstra(
1919
1, -- start node
2020
4 -- end node
2121
);
22-
seq | path_seq | start_vid | end_vid | node | edge | cost | agg_cost
23-
-----+----------+-----------+---------+------+------+------+----------
24-
1 | 1 | 1 | 4 | 1 | 1 | 1 | 0
25-
2 | 2 | 1 | 4 | 2 | 2 | 1 | 1
26-
3 | 3 | 1 | 4 | 3 | 3 | 1 | 2
27-
4 | 4 | 1 | 4 | 4 | -1 | 0 | 3
22+
seq | path_seq | node | edge | cost | agg_cost
23+
-----+----------+------+------+------+----------
24+
1 | 1 | 1 | 1 | 1 | 0
25+
2 | 2 | 2 | 2 | 1 | 1
26+
3 | 3 | 3 | 3 | 1 | 2
27+
4 | 4 | 4 | -1 | 0 | 3
2828
(4 rows)
2929

3030
drop schema v cascade;

0 commit comments

Comments
 (0)