mirror of
https://github.com/EnterpriseDB/repmgr.git
synced 2026-03-23 07:06:30 +00:00
10 lines
231 B
MySQL
10 lines
231 B
MySQL
/*
|
|
* repmgr_wrapper_function.sql
|
|
* Copyright (c) 2ndQuadrant, 2010
|
|
*
|
|
*/
|
|
|
|
CREATE FUNCTION get_last_xlog_replay_timestamp() RETURNS timestamp with time zone
|
|
AS 'MODULE_PATHNAME', 'last_xlog_replay_timestamp'
|
|
LANGUAGE C STRICT;
|