Skip to content

Commit

Permalink
fixing some out of shared memory
Browse files Browse the repository at this point in the history
  • Loading branch information
cvvergara committed Nov 5, 2016
1 parent 6286972 commit a6a06cb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pgrouting-2.1.1-3983-1c61739 master
pgrouting-2.1.1-3984-6286972 master
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

\i setup.sql

SELECT plan(1224);
SELECT plan(612);

UPDATE edge_table SET cost = cost + 0.001 * id * id, reverse_cost = reverse_cost + 0.001 * id * id;

Expand All @@ -24,7 +24,7 @@ BEGIN
k := 1;
inner_sql1 = quote_literal('SELECT id::INTEGER, source::INTEGER, target::INTEGER, cost, reverse_cost from edge_table ORDER BY id');
inner_sql2 = quote_literal('SELECT id::INTEGER, source::INTEGER, target::INTEGER, cost from edge_table ORDER BY id');
FOR i IN 1.. cant LOOP
FOR i IN 1.. cant BY 2 LOOP
FOR j IN 1..cant LOOP

-- this special case is tested on the other test
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

\i setup.sql

SELECT plan(1224);
SELECT plan(612);

UPDATE edge_table SET cost = cost + 0.001 * id * id, reverse_cost = reverse_cost + 0.001 * id * id;

Expand All @@ -24,7 +24,7 @@
inner_sql1 = quote_literal('SELECT id::INTEGER, source::INTEGER, target::INTEGER, cost, reverse_cost FROM edge_table ORDER BY id');
inner_sql2 = quote_literal('SELECT id::INTEGER, source::INTEGER, target::INTEGER, cost FROM edge_table ORDER BY id');
FOR i IN 1.. cant LOOP
FOR j IN 1..cant LOOP
FOR j IN 1..cant BY 2 LOOP

-- this special case is tested on the other test
CONTINUE WHEN i = j;
Expand Down

0 comments on commit a6a06cb

Please sign in to comment.