Add Parallel Bitmap Heap Scan case#85
Merged
my-ship-it merged 1 commit intoapache:mainfrom Aug 7, 2023
Merged
Conversation
ba468bb to
bd79297
Compare
2 tasks
bd79297 to
d41b27c
Compare
Contributor
|
There are times when test may fail due to instability and you can click retry without having to re-trigger the whole ci. |
0691a9b to
ec70db3
Compare
yjhjstz
approved these changes
Jul 31, 2023
ec70db3 to
f99de12
Compare
We have enabled Parallel Bitmap Heap Scan like:
explain(costs off) select c2 from t1;
QUERY PLAN
--------------------------------------------
Gather Motion 6:1 (slice1; segments: 6)
-> Parallel Bitmap Heap Scan on t1
-> Bitmap Index Scan on t1_c2_idx
Add an case to show that.
Authored-by: Zhang Mingli avamingli@gmail.com
f99de12 to
216215c
Compare
my-ship-it
approved these changes
Aug 7, 2023
tuhaihe
pushed a commit
that referenced
this pull request
Feb 27, 2026
Currently, tests for appendonly relations is missing. This patch adds one test for that. Co-Authored-by: Xuebin Su <sxuebin@vmware.com> Co-Authored-by: Hao Zhang <hzhang2@vmware.com>
reshke
pushed a commit
that referenced
this pull request
Mar 11, 2026
Currently, tests for appendonly relations is missing. This patch adds one test for that. Co-Authored-by: Xuebin Su <sxuebin@vmware.com> Co-Authored-by: Hao Zhang <hzhang2@vmware.com>
reshke
pushed a commit
to reshke/cloudberrydb
that referenced
this pull request
Mar 11, 2026
Currently, tests for appendonly relations is missing. This patch adds one test for that. Co-Authored-by: Xuebin Su <sxuebin@vmware.com> Co-Authored-by: Hao Zhang <hzhang2@vmware.com>
reshke
pushed a commit
to reshke/cloudberrydb
that referenced
this pull request
Mar 12, 2026
Currently, tests for appendonly relations is missing. This patch adds one test for that. Co-Authored-by: Xuebin Su <sxuebin@vmware.com> Co-Authored-by: Hao Zhang <hzhang2@vmware.com>
reshke
pushed a commit
to reshke/cloudberrydb
that referenced
this pull request
Mar 12, 2026
Currently, tests for appendonly relations is missing. This patch adds one test for that. Co-Authored-by: Xuebin Su <sxuebin@vmware.com> Co-Authored-by: Hao Zhang <hzhang2@vmware.com>
oppenheimer01
pushed a commit
to oppenheimer01/cloudberrydb
that referenced
this pull request
Apr 12, 2026
Currently, tests for appendonly relations is missing. This patch adds one test for that. Co-Authored-by: Xuebin Su <sxuebin@vmware.com> Co-Authored-by: Hao Zhang <hzhang2@vmware.com>
oppenheimer01
pushed a commit
to oppenheimer01/cloudberrydb
that referenced
this pull request
Apr 21, 2026
Currently, tests for appendonly relations is missing. This patch adds one test for that. Co-Authored-by: Xuebin Su <sxuebin@vmware.com> Co-Authored-by: Hao Zhang <hzhang2@vmware.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Issue #65 says we need to support Parallel Bitmap Heap Scan.
I don't have the impression that we disable it at some time.
Have a check and yeah, we have it, but lack of a case.
Add a case to show that.
By adding the cases, found that the underling Bitmap Index Scan Locus is NULL.
It's not so right and may cause confusion even it doesn't have an impact on Plan Execution.
I have new an issue #86 to track that.
Authored-by: Zhang Mingli avamingli@gmail.com
closes: #65
Change logs
Describe your change clearly, including what problem is being solved or what feature is being added.
If it has some breaking backward or forward compatibility, please clary.
Why are the changes needed?
Describe why the changes are necessary.
Does this PR introduce any user-facing change?
If yes, please clarify the previous behavior and the change this PR proposes.
How was this patch tested?
Please detail how the changes were tested, including manual tests and any relevant unit or integration tests.
Contributor's Checklist
Here are some reminders before you submit the pull request:
make installcheckmake -C src/test installcheck-cbdb-parallel