fukamachi / sxql

An SQL generator for Common Lisp.
BSD 3-Clause "New" or "Revised" License
363 stars 31 forks source link

fix yield for infix-op #54

Closed cxxxr closed 4 years ago

cxxxr commented 4 years ago

infix-opのyieldで左辺にselectがある場合に間違ったsqlを出していました

(yield (where `(:<= ,(select :* (from :table)) :value)))

修正前

"WHERE (SELECT * FROM `table` <= `value`)"

修正後

"WHERE ((SELECT * FROM `table`) <= `value`)"
fukamachi commented 4 years ago

Thanks!