Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Restore initial -1 value for prefetch_target
  • Loading branch information
knizhnik committed Apr 3, 2023
commit 810afd5d673f3f5e80e4be6ce7d7462adab04e30
2 changes: 1 addition & 1 deletion src/backend/executor/nodeBitmapHeapscan.c
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ BitmapHeapNext(BitmapHeapScanState *node)
#ifdef USE_PREFETCH
node->prefetch_head = 0;
node->prefetch_pages = 0;
node->prefetch_target = 0;//-1;
node->prefetch_target = -1;
#endif

/* Allocate a private iterator and attach the shared state to it */
Expand Down