diff --git a/src/honey/sql/helpers.cljc b/src/honey/sql/helpers.cljc index 6fa3f6d..1e3a30a 100644 --- a/src/honey/sql/helpers.cljc +++ b/src/honey/sql/helpers.cljc @@ -648,8 +648,8 @@ (full-join [:table :t] [:= :foo.id :t.foo_id]) Produces: - INNER JOIN table ON foo.id = table.foo_id - INNER JOIN table AS t ON foo.id = t.foo_id" + FULL JOIN table ON foo.id = table.foo_id + FULL JOIN table AS t ON foo.id = t.foo_id" [& args] (generic :full-join args))