postgres=> select (1, 1) = (999, 999);
(1, 1) = (999, 999)
---------------------
f
(1 row)
postgres=> select (1, 1) > (999, 999);
(1, 1) > (999, 999)
---------------------
t
(1 row)
postgres=> select (1, 1) < (999, 999);
(1, 1) < (999, 999)
---------------------
t
(1 row)
postgres=> select (1, 1) = (999, 999);
(1, 1) = (999, 999)
---------------------
f
(1 row)
postgres=> select (1, 1) > (999, 999);
(1, 1) > (999, 999)
---------------------
f
(1 row)
postgres=> select (1, 1) < (999, 999);
(1, 1) < (999, 999)
---------------------
t
(1 row)
doltgres:
postgres:
skipped tests in gms:
https://github.com/dolthub/go-mysql-server/pull/3575/changes#diff-6df90f24b206dbf15eb1d2426c588a08ad6115526c76dae8f8b54a702c768171R1153