Clean up namespace from porting.
This commit is contained in:
parent
cbb7929c36
commit
404c0b7272
1 changed files with 4 additions and 4 deletions
|
|
@ -397,8 +397,8 @@
|
||||||
(defmethod format-clause :with-recursive [[_ ctes] _]
|
(defmethod format-clause :with-recursive [[_ ctes] _]
|
||||||
(str "WITH RECURSIVE " (comma-join (map cte->sql ctes))))
|
(str "WITH RECURSIVE " (comma-join (map cte->sql ctes))))
|
||||||
|
|
||||||
(defmethod fmt/format-clause :union [[_ maps] _]
|
(defmethod format-clause :union [[_ maps] _]
|
||||||
(string/join " UNION " (map fmt/to-sql maps)))
|
(string/join " UNION " (map to-sql maps)))
|
||||||
|
|
||||||
(defmethod fmt/format-clause :union-all [[_ maps] _]
|
(defmethod format-clause :union-all [[_ maps] _]
|
||||||
(string/join " UNION ALL " (map fmt/to-sql maps)))
|
(string/join " UNION ALL " (map to-sql maps)))
|
||||||
Loading…
Reference in a new issue