From 23c95978705ce7219ac28284df3e0fa72015033b Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Sat, 10 Jun 2023 19:13:06 -0700 Subject: [PATCH] a note for #407 --- test/honey/sql_test.cljc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/honey/sql_test.cljc b/test/honey/sql_test.cljc index e47c05c..242d9a4 100644 --- a/test/honey/sql_test.cljc +++ b/test/honey/sql_test.cljc @@ -1204,3 +1204,8 @@ ORDER BY id = ? DESC (testing "special syntax example" (is (= ["INNER JOIN (tbl1 LEFT JOIN tbl2 USING (id))"] (sut/format {:join [[[:join :tbl1 {:left-join [:tbl2 [:using :id]]}]]]}))))) + +(comment + ;; partial workaround for #407: + (sut/format {:select :f.* :from [[:foo [:f :for :system-time]]] :where [:= :f.id 1]}) + )