mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-12 18:34:36 +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
786 B
SQL
31 lines
786 B
SQL
-- cidr check
|
|
|
|
CREATE TABLE cidrtmp AS
|
|
SELECT cidr(a) AS a FROM inettmp ;
|
|
|
|
SET enable_seqscan=on;
|
|
|
|
SELECT count(*) FROM cidrtmp WHERE a < '121.111.63.82';
|
|
|
|
SELECT count(*) FROM cidrtmp WHERE a <= '121.111.63.82';
|
|
|
|
SELECT count(*) FROM cidrtmp WHERE a = '121.111.63.82';
|
|
|
|
SELECT count(*) FROM cidrtmp WHERE a >= '121.111.63.82';
|
|
|
|
SELECT count(*) FROM cidrtmp WHERE a > '121.111.63.82';
|
|
|
|
CREATE INDEX cidridx ON cidrtmp USING gist ( a );
|
|
|
|
SET enable_seqscan=off;
|
|
|
|
SELECT count(*) FROM cidrtmp WHERE a < '121.111.63.82'::cidr;
|
|
|
|
SELECT count(*) FROM cidrtmp WHERE a <= '121.111.63.82'::cidr;
|
|
|
|
SELECT count(*) FROM cidrtmp WHERE a = '121.111.63.82'::cidr;
|
|
|
|
SELECT count(*) FROM cidrtmp WHERE a >= '121.111.63.82'::cidr;
|
|
|
|
SELECT count(*) FROM cidrtmp WHERE a > '121.111.63.82'::cidr;
|