Skip to content

Commit

Permalink
YSQL: Fix Index Read Requests in colocated bitmap scan tests
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Tanuj Nayak committed Nov 6, 2024
1 parent 5ffca27 commit 841f7bf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1004,7 +1004,7 @@ SELECT * FROM test_limit WHERE a < 200 LIMIT 10;
-> Bitmap Index Scan on test_limit_a_idx (actual rows=199 loops=1)
Index Cond: (a < 200)
Storage Table Rows Scanned: 199
Storage Index Read Requests: 20
Storage Index Read Requests: 3
Storage Index Rows Scanned: 199
(9 rows)

Expand Down

0 comments on commit 841f7bf

Please sign in to comment.