Hey all... I'm loving Hugsql but having an issue with my_column ? 'value'
not parsing into a jsonb '?' operator. Hugsql sees the '?' and expects a parameter. I've tried one and 2 backslashes before the '?' but still getting similar errors.
@jmckitrick This a JDBC driver issue, and you can escape a question mark with a double question mark: ??
Oh, ok I'll try that. I was just about to try a snippet...
Reference: https://jdbc.postgresql.org/documentation/head/statement.html
Thanks so much. I'll try that out...