MCPcopy Create free account
hub / github.com/MariaDB/server / ha_commit_checkpoint_request

Function ha_commit_checkpoint_request

sql/handler.cc:945–952  ·  view source on GitHub ↗

Invoke commit_checkpoint_request() in all storage engines that implement it. If pre_hook is non-NULL, the hook will be called prior to each invocation. */

Source from the content-addressed store, hash-verified

943 If pre_hook is non-NULL, the hook will be called prior to each invocation.
944*/
945void
946ha_commit_checkpoint_request(void *cookie, void (*pre_hook)(void *))
947{
948 st_commit_checkpoint_request st;
949 st.cookie= cookie;
950 st.pre_hook= pre_hook;
951 tp_foreach(NULL, commit_checkpoint_request_handlerton, &st);
952}
953
954
955/**

Callers 2

do_checkpoint_requestMethod · 0.85
unlogMethod · 0.85

Calls 1

tp_foreachFunction · 0.85

Tested by

no test coverage detected