-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adapt dynamic (bitmap/index/table) scan to PG 14
In PG commit 36d22dd, if the ops in tableslot which returned by the current execution operator is fixed, the executor will simplify the call and directly call `*virt` functions. But in the dynamic (bitmap/index/table) scan operator, we don't know the tupleslot ops of the subtable (it may even be different). So the current change sets the `opsisfixed` of scan and result to false, which can prevent the executor from directly calling `*virt` funcstion.
- Loading branch information
1 parent
12ed1a8
commit 5612f4b
Showing
4 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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