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)
case DSM_IMPL_WINDOWS:
return false;
case DSM_IMPL_MMAP:
return false;
return true;
default:
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