Skip to content

Commit

Permalink
Merge pull request #317 from sabracrolleton/master
Browse files Browse the repository at this point in the history
Fix for other packages methods for cl-postgres:to-sql-string
  • Loading branch information
sabracrolleton authored Dec 13, 2022
2 parents 04120b4 + c721e19 commit f381345
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion s-sql/s-sql.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ You can define to-s-sql-string methods for your own datatypes.")
(:method ((arg (eql :null)))
"NULL")
(:method ((arg t))
(error "Value ~S can not be converted to an SQL literal." arg)))
(cl-postgres:to-sql-string arg)))

(defun to-sql-name (name &optional (escape-p *escape-sql-names-p*)
(ignore-reserved-words nil))
Expand Down

0 comments on commit f381345

Please sign in to comment.