honeysql

Discussion of https://github.com/seancorfield/honeysql :slightly_smiling_face:
dharrigan 2021-01-20T16:39:13.001200Z

Can honeysql do multiple or's if a vector is passed in, ["A" "B"] -> select foo from bar where baz = "A" or baz = "b"?

seancorfield 2021-01-20T18:00:09.002400Z

Why not [:in :baz ["A" "B"]]

dharrigan 2021-01-20T19:00:37.002600Z

good idea!