Skip to content

Commit 98633c4

Browse files
committed
Fix pgregress tests
1 parent 6c8ab8f commit 98633c4

File tree

4 files changed

+192
-93
lines changed

4 files changed

+192
-93
lines changed

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 | 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
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
2828
(4 rows)
2929

3030
drop schema v cascade;

0 commit comments

Comments
 (0)