mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-06 15:24:56 +08:00
d92b1cdbab
This reverts commit 9f984ba6d2
.
It was making the buildfarm unhappy, apparently setting client_min_messages
in a regression test produces different output if log_statement='all'.
Another issue is that I now suspect the bit sortsupport function was in
fact not correct to call byteacmp(). Revert to investigate both of those
issues.
31 lines
686 B
SQL
31 lines
686 B
SQL
-- oid check
|
|
|
|
SET enable_seqscan=on;
|
|
|
|
CREATE TEMPORARY TABLE oidtmp (oid oid);
|
|
INSERT INTO oidtmp SELECT g.i::oid FROM generate_series(1, 1000) g(i);
|
|
|
|
SELECT count(*) FROM oidtmp WHERE oid < 17;
|
|
|
|
SELECT count(*) FROM oidtmp WHERE oid <= 17;
|
|
|
|
SELECT count(*) FROM oidtmp WHERE oid = 17;
|
|
|
|
SELECT count(*) FROM oidtmp WHERE oid >= 17;
|
|
|
|
SELECT count(*) FROM oidtmp WHERE oid > 17;
|
|
|
|
CREATE INDEX oididx ON oidtmp USING gist ( oid );
|
|
|
|
SET enable_seqscan=off;
|
|
|
|
SELECT count(*) FROM oidtmp WHERE oid < 17;
|
|
|
|
SELECT count(*) FROM oidtmp WHERE oid <= 17;
|
|
|
|
SELECT count(*) FROM oidtmp WHERE oid = 17;
|
|
|
|
SELECT count(*) FROM oidtmp WHERE oid >= 17;
|
|
|
|
SELECT count(*) FROM oidtmp WHERE oid > 17;
|