Skip to content

Commit fd800dc

Browse files
committed
remove unnecessary tests
1 parent 788e558 commit fd800dc

File tree

1 file changed

+0
-37
lines changed

1 file changed

+0
-37
lines changed

pgtap/ordering/sloan/edge_cases.pg

Lines changed: 0 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -101,43 +101,6 @@ RETURN QUERY
101101
SELECT set_eq('r10', $$VALUES (1, 5), (2, 6), (3, 10)$$, 'Basic test');
102102

103103

104-
-- pgRouting sample data
105-
106-
CREATE TABLE expected_result (
107-
seq BIGINT,
108-
node BIGINT);
109-
110-
INSERT INTO expected_result (seq, node) VALUES
111-
(1, 13),
112-
(2, 14),
113-
(3, 2),
114-
(4, 4),
115-
(5, 1),
116-
(6, 9),
117-
(7, 3),
118-
(8, 8),
119-
(9, 5),
120-
(10, 7),
121-
(11, 12),
122-
(12, 6),
123-
(13, 11),
124-
(14, 17),
125-
(15, 10),
126-
(16, 16),
127-
(17, 15);
128-
129-
PREPARE q11 AS
130-
SELECT * FROM pgr_sloanOrdering(
131-
'SELECT id, source, target, cost, reverse_cost FROM edges');
132-
133-
PREPARE r11 AS
134-
SELECT * FROM expected_result;
135-
136-
IF version() LIKE '%SQL 14%' THEN
137-
PERFORM todo('test failing with postgres 14',1);
138-
END IF;
139-
RETURN QUERY SELECT set_eq('q11','r11','sample data graph of pgRouting');
140-
141104
END;
142105
$BODY$
143106
LANGUAGE plpgsql;

0 commit comments

Comments
 (0)