diff options
Diffstat (limited to 'src/backend/access/transam/parallel.c')
-rw-r--r-- | src/backend/access/transam/parallel.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/backend/access/transam/parallel.c b/src/backend/access/transam/parallel.c index 1d631b72755..4e32cfff500 100644 --- a/src/backend/access/transam/parallel.c +++ b/src/backend/access/transam/parallel.c @@ -162,13 +162,6 @@ CreateParallelContext(const char *library_name, const char *function_name, Assert(nworkers >= 0); /* - * If dynamic shared memory is not available, we won't be able to use - * background workers. - */ - if (dynamic_shared_memory_type == DSM_IMPL_NONE) - nworkers = 0; - - /* * If we are running under serializable isolation, we can't use parallel * workers, at least not until somebody enhances that mechanism to be * parallel-aware. Utility statement callers may ask us to ignore this |