summaryrefslogtreecommitdiffstats
path: root/contrib/btree_gist/expected/inet.out
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 12:17:33 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 12:17:33 +0000
commit5e45211a64149b3c659b90ff2de6fa982a5a93ed (patch)
tree739caf8c461053357daa9f162bef34516c7bf452 /contrib/btree_gist/expected/inet.out
parentInitial commit. (diff)
downloadpostgresql-15-5e45211a64149b3c659b90ff2de6fa982a5a93ed.tar.xz
postgresql-15-5e45211a64149b3c659b90ff2de6fa982a5a93ed.zip
Adding upstream version 15.5.upstream/15.5
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'contrib/btree_gist/expected/inet.out')
-rw-r--r--contrib/btree_gist/expected/inet.out101
1 files changed, 101 insertions, 0 deletions
diff --git a/contrib/btree_gist/expected/inet.out b/contrib/btree_gist/expected/inet.out
new file mode 100644
index 0000000..f15f143
--- /dev/null
+++ b/contrib/btree_gist/expected/inet.out
@@ -0,0 +1,101 @@
+-- inet check
+CREATE TABLE inettmp (a inet);
+\copy inettmp from 'data/inet.data'
+SET enable_seqscan=on;
+SELECT count(*) FROM inettmp WHERE a < '89.225.196.191';
+ count
+-------
+ 213
+(1 row)
+
+SELECT count(*) FROM inettmp WHERE a <= '89.225.196.191';
+ count
+-------
+ 214
+(1 row)
+
+SELECT count(*) FROM inettmp WHERE a = '89.225.196.191';
+ count
+-------
+ 1
+(1 row)
+
+SELECT count(*) FROM inettmp WHERE a >= '89.225.196.191';
+ count
+-------
+ 387
+(1 row)
+
+SELECT count(*) FROM inettmp WHERE a > '89.225.196.191';
+ count
+-------
+ 386
+(1 row)
+
+CREATE INDEX inetidx ON inettmp USING gist ( a );
+SET enable_seqscan=off;
+SELECT count(*) FROM inettmp WHERE a < '89.225.196.191'::inet;
+ count
+-------
+ 213
+(1 row)
+
+SELECT count(*) FROM inettmp WHERE a <= '89.225.196.191'::inet;
+ count
+-------
+ 214
+(1 row)
+
+SELECT count(*) FROM inettmp WHERE a = '89.225.196.191'::inet;
+ count
+-------
+ 1
+(1 row)
+
+SELECT count(*) FROM inettmp WHERE a >= '89.225.196.191'::inet;
+ count
+-------
+ 387
+(1 row)
+
+SELECT count(*) FROM inettmp WHERE a > '89.225.196.191'::inet;
+ count
+-------
+ 386
+(1 row)
+
+VACUUM ANALYZE inettmp;
+-- gist_inet_ops lacks a fetch function, so this should not be index-only scan
+EXPLAIN (COSTS OFF)
+SELECT count(*) FROM inettmp WHERE a = '89.225.196.191'::inet;
+ QUERY PLAN
+--------------------------------------------------
+ Aggregate
+ -> Index Scan using inetidx on inettmp
+ Index Cond: (a = '89.225.196.191'::inet)
+(3 rows)
+
+SELECT count(*) FROM inettmp WHERE a = '89.225.196.191'::inet;
+ count
+-------
+ 1
+(1 row)
+
+DROP INDEX inetidx;
+CREATE INDEX ON inettmp USING gist (a gist_inet_ops, a inet_ops);
+-- this can be an index-only scan, as long as the planner uses the right column
+EXPLAIN (COSTS OFF)
+SELECT count(*) FROM inettmp WHERE a = '89.225.196.191'::inet;
+ QUERY PLAN
+---------------------------------------------------------
+ Aggregate
+ -> Index Only Scan using inettmp_a_a1_idx on inettmp
+ Index Cond: (a = '89.225.196.191'::inet)
+(3 rows)
+
+SELECT count(*) FROM inettmp WHERE a = '89.225.196.191'::inet;
+ count
+-------
+ 1
+(1 row)
+