Hello
I think this commit caused a regression with OIDs >= 2**31:
CREATE TABLE t (o oid);INSERT INTO t VALUES ('2147483648');SELECT o FROM t UNION ALL SELECT '3000000000'::oid ORDER BY 1;