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
PG has operators with ? in them (e.g., ?|) because, well, of course it does.
So there's a "conflict" between SQL placeholders (?) and PG operators and you need to escape the question mark by doubling it to get the operator ??| instead of a placeholder.
The text was updated successfully, but these errors were encountered:
PG has operators with
?
in them (e.g.,?|
) because, well, of course it does.So there's a "conflict" between SQL placeholders (
?
) and PG operators and you need to escape the question mark by doubling it to get the operator??|
instead of a placeholder.The text was updated successfully, but these errors were encountered: