mirror of
https://github.com/postgres/postgres.git
synced 2025-08-19 23:22:23 +03:00
Extend index AM API for parallel index scans.
This patch doesn't actually make any index AM parallel-aware, but it provides the necessary functions at the AM layer to do so. Rahila Syed, Amit Kapila, Robert Haas
This commit is contained in:
@@ -118,6 +118,9 @@ bthandler(PG_FUNCTION_ARGS)
|
||||
amroutine->amendscan = btendscan;
|
||||
amroutine->ammarkpos = btmarkpos;
|
||||
amroutine->amrestrpos = btrestrpos;
|
||||
amroutine->amestimateparallelscan = NULL;
|
||||
amroutine->aminitparallelscan = NULL;
|
||||
amroutine->amparallelrescan = NULL;
|
||||
|
||||
PG_RETURN_POINTER(amroutine);
|
||||
}
|
||||
|
Reference in New Issue
Block a user