Commit c6d4b1dd authored by Robert Haas's avatar Robert Haas

Flag mmap implemenation of dynamic shared memory as resize-capable.

Error noted by Heikki Linnakangas
parent a8656a3a
...@@ -214,7 +214,7 @@ dsm_impl_can_resize(void) ...@@ -214,7 +214,7 @@ dsm_impl_can_resize(void)
case DSM_IMPL_WINDOWS: case DSM_IMPL_WINDOWS:
return false; return false;
case DSM_IMPL_MMAP: case DSM_IMPL_MMAP:
return false; return true;
default: default:
return false; /* should not happen */ return false; /* should not happen */
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment