Skip to content

Commit b34720c

Browse files
committed
stuff
1 parent f758fa1 commit b34720c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/macaw/walk.clj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
{:alias AstWalker$CallbackKey/ALIAS
1111
:column AstWalker$CallbackKey/COLUMN
1212
:column-qualifier AstWalker$CallbackKey/COLUMN_QUALIFIER
13+
:every-node AstWalker$CallbackKey/EVERY_NODE
1314
:mutation AstWalker$CallbackKey/MUTATION_COMMAND
1415
:pseudo-table AstWalker$CallbackKey/PSEUDO_TABLES
1516
:table AstWalker$CallbackKey/TABLE

test/macaw/scope_experiments_test.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[clojure.test :refer :all]
44
[macaw.scope-experiments :as mse]))
55

6-
(deftest semantic-map-test
6+
(deftest ^:parallel semantic-map-test
77
(is (= (mse/semantic-map "select x from t, u, v left join w on w.id = v.id where t.id = u.id and u.id = v.id limit 3")
88
{:scopes {1 {:path ["SELECT"], :children [[:column nil "x"]]},
99
2 {:path ["SELECT" "FROM"], :children [[:table "t"]]},
@@ -53,7 +53,7 @@
5353
[1 [:column nil "d"]]
5454
[2 [:table "t"]]]})))
5555

56-
(deftest fields-to-search-test
56+
(deftest ^:parallel fields-to-search-test
5757
;; like source-columns, but understands scope
5858
(is (= (mse/fields-to-search
5959
(mse/fields->tables-in-scope "select x from t, u, v left join w on w.a = v.a where t.b = u.b and u.c = v.c limit 3"))

0 commit comments

Comments
 (0)