You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First I need to say that I am very happy with HoneySQL so far, the move to it from Yesql has brought so much flexibility 🙏
I am facing an issue that I am trying to get a POSTGRESQL expression in the form foo IS DISTINCT FROM 'bar' (the latter text being in a variable)
It seems that the operator doesn't exist yet so we have
Accepts one or more arguments and tries to render them as a SQL values directly in the formatted SQL string rather than turning it into a positional parameter
keywords and symbols become upper case entities (with - replaced by space)
but then I get:
which is still not correct and seems to break the promise of :inline, unless I didn't unserstand how to use it properly which is very possible
So now I have to turn to :raw which is not optimal in terms of inserting my variable in the expression. Did I miss something, either on the use of :inline, or to turn the function into an infix operator ?
Version information com.github.seancorfield/honeysql {:mvn/version "2.6.1196"}
The text was updated successfully, but these errors were encountered:
Hello,
First I need to say that I am very happy with HoneySQL so far, the move to it from Yesql has brought so much flexibility 🙏
I am facing an issue that I am trying to get a POSTGRESQL expression in the form
foo IS DISTINCT FROM 'bar'
(the latter text being in a variable)It seems that the operator doesn't exist yet so we have
which is incorrect
I turned to
:inline
as I read:which is still not correct and seems to break the promise of
:inline
, unless I didn't unserstand how to use it properly which is very possibleSo now I have to turn to
:raw
which is not optimal in terms of inserting my variable in the expression. Did I miss something, either on the use of:inline
, or to turn the function into an infix operator ?Version information
com.github.seancorfield/honeysql {:mvn/version "2.6.1196"}
The text was updated successfully, but these errors were encountered: