Skip to content

Commit

Permalink
bug fix symbol version of values row
Browse files Browse the repository at this point in the history
Signed-off-by: Sean Corfield <[email protected]>
  • Loading branch information
seancorfield committed Sep 29, 2024
1 parent 3d48eca commit de75ace
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/honey/sql.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -1062,7 +1062,7 @@
(let [first-xs (when (sequential? xs) (first (drop-while ident? xs)))
row-ctr (and (sequential? xs)
(ident? (first xs))
(contains? #{:row 'rows} (first xs)))
(contains? #{:row 'row} (first xs)))
xs (if row-ctr (rest xs) xs)]
(cond (and (ident? xs) (contains? #{:default 'default} xs))
[(str (sql-kw xs) " " (sql-kw k))]
Expand Down

0 comments on commit de75ace

Please sign in to comment.