On Thursday, May 16, 2024, David Hunnisett <david(dot)hunnisett(at)probit(dot)io>
wrote:
> When using a signed comparison != does not behave like <> if the right
> hand side comparator is signed and there is no space between the comparator
> and the sign
>
>
This is not a bug. You are seeing practical examples of the behavior
documented here:
https://www.postgresql.org/docs/current/sql-syntax-lexical.html#SQL-SYNTAX-OPERATORS
In short, a consequence of allowing users to define their own operators.
David J.