You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: avoid multikey onCommit use-after-free (#489)
Improved multikey index metadata handling for the Eloq storage engine.
Preserved existing multikey updates and query-cache behavior for other storage engines.
Revert coroutine stack (#236)
This PR reverts the use of boost::context::protected_fixedsize_stack, because
memory is not reused even though it is a class member variable. Each callcc will
allocate memory by calling mmap/mprotect.