summaryrefslogtreecommitdiffstats
path: root/contrib/btree_gist/expected/cash.out
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 12:19:15 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 12:19:15 +0000
commit6eb9c5a5657d1fe77b55cc261450f3538d35a94d (patch)
tree657d8194422a5daccecfd42d654b8a245ef7b4c8 /contrib/btree_gist/expected/cash.out
parentInitial commit. (diff)
downloadpostgresql-13-6eb9c5a5657d1fe77b55cc261450f3538d35a94d.tar.xz
postgresql-13-6eb9c5a5657d1fe77b55cc261450f3538d35a94d.zip
Adding upstream version 13.4.upstream/13.4upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'contrib/btree_gist/expected/cash.out')
-rw-r--r--contrib/btree_gist/expected/cash.out91
1 files changed, 91 insertions, 0 deletions
diff --git a/contrib/btree_gist/expected/cash.out b/contrib/btree_gist/expected/cash.out
new file mode 100644
index 0000000..7fbc735
--- /dev/null
+++ b/contrib/btree_gist/expected/cash.out
@@ -0,0 +1,91 @@
+-- money check
+CREATE TABLE moneytmp (a money);
+\copy moneytmp from 'data/cash.data'
+SET enable_seqscan=on;
+SELECT count(*) FROM moneytmp WHERE a < '22649.64';
+ count
+-------
+ 289
+(1 row)
+
+SELECT count(*) FROM moneytmp WHERE a <= '22649.64';
+ count
+-------
+ 290
+(1 row)
+
+SELECT count(*) FROM moneytmp WHERE a = '22649.64';
+ count
+-------
+ 1
+(1 row)
+
+SELECT count(*) FROM moneytmp WHERE a >= '22649.64';
+ count
+-------
+ 254
+(1 row)
+
+SELECT count(*) FROM moneytmp WHERE a > '22649.64';
+ count
+-------
+ 253
+(1 row)
+
+SELECT a, a <-> '21472.79' FROM moneytmp ORDER BY a <-> '21472.79' LIMIT 3;
+ a | ?column?
+------------+----------
+ $21,472.79 | $0.00
+ $21,469.25 | $3.54
+ $21,915.01 | $442.22
+(3 rows)
+
+CREATE INDEX moneyidx ON moneytmp USING gist ( a );
+SET enable_seqscan=off;
+SELECT count(*) FROM moneytmp WHERE a < '22649.64'::money;
+ count
+-------
+ 289
+(1 row)
+
+SELECT count(*) FROM moneytmp WHERE a <= '22649.64'::money;
+ count
+-------
+ 290
+(1 row)
+
+SELECT count(*) FROM moneytmp WHERE a = '22649.64'::money;
+ count
+-------
+ 1
+(1 row)
+
+SELECT count(*) FROM moneytmp WHERE a >= '22649.64'::money;
+ count
+-------
+ 254
+(1 row)
+
+SELECT count(*) FROM moneytmp WHERE a > '22649.64'::money;
+ count
+-------
+ 253
+(1 row)
+
+EXPLAIN (COSTS OFF)
+SELECT a, a <-> '21472.79' FROM moneytmp ORDER BY a <-> '21472.79' LIMIT 3;
+ QUERY PLAN
+--------------------------------------------------
+ Limit
+ -> Index Only Scan using moneyidx on moneytmp
+ Order By: (a <-> '$21,472.79'::money)
+(3 rows)
+
+SELECT a, a <-> '21472.79' FROM moneytmp ORDER BY a <-> '21472.79' LIMIT 3;
+ a | ?column?
+------------+----------
+ $21,472.79 | $0.00
+ $21,469.25 | $3.54
+ $21,915.01 | $442.22
+(3 rows)
+