From 7aafafcabc08298ea907c6059ad281d081dd0c6f Mon Sep 17 00:00:00 2001 From: dtenwolde Date: Thu, 11 Jan 2024 09:45:47 +0100 Subject: [PATCH] Remove test from other branch --- .../join/pathfinding/test_path_finding.test | 24 ------------------- 1 file changed, 24 deletions(-) delete mode 100644 test/sql/join/pathfinding/test_path_finding.test diff --git a/test/sql/join/pathfinding/test_path_finding.test b/test/sql/join/pathfinding/test_path_finding.test deleted file mode 100644 index a5386e668ca..00000000000 --- a/test/sql/join/pathfinding/test_path_finding.test +++ /dev/null @@ -1,24 +0,0 @@ -# name: test/sql/join/pathfinding/test_path_finding.test -# description: Prototype the path finding operator -# group: [pathfinding] - -statement ok -PRAGMA enable_verification - -statement ok -CREATE TABLE pairs(src INT, dst INT); - -statement ok -INSERT INTO pairs(src, dst) VALUES (1, 2), (2, 3), (3,1), (3, 2), (6, 1), (4,2); - -statement ok -create table knows(src INT, dst INT); - -statement ok -INSERT INTO knows(src, dst) VALUES (1,3), (1,1), (2,1), (2,3), (3,1), (NULL, NULL), (NULL, NULL) - -query II -SELECT * -FROM knows AS a, pairs AS b -WHERE (a.src BETWEEN b.src AND b.src); ----- \ No newline at end of file