Skip to content

Commit 841f7bf

Browse files
author
Tanuj Nayak
committed
YSQL: Fix Index Read Requests in colocated bitmap scan tests
Summary: D39453/2578d8b6422d6c6e015b30b01520ea27bcf6b87e made a fix to reduce the number of read requests in an query with a LIMIT on colocated tables. It missed updating the output file for yb_bitmap_scans_colo. This test fixes that issue. Test Plan: Jenkins: test regex: .*PgRegressYbBitmapScans.* Reviewers: telgersma Reviewed By: telgersma Subscribers: yql Differential Revision: https://phorge.dev.yugabyte.com/D39735
1 parent 5ffca27 commit 841f7bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/postgres/src/test/regress/expected/yb_bitmap_scans_colo.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1004,7 +1004,7 @@ SELECT * FROM test_limit WHERE a < 200 LIMIT 10;
10041004
-> Bitmap Index Scan on test_limit_a_idx (actual rows=199 loops=1)
10051005
Index Cond: (a < 200)
10061006
Storage Table Rows Scanned: 199
1007-
Storage Index Read Requests: 20
1007+
Storage Index Read Requests: 3
10081008
Storage Index Rows Scanned: 199
10091009
(9 rows)
10101010

0 commit comments

Comments
 (0)