@@ -28,13 +28,14 @@ AS 'MODULE_PATHNAME','mtm_get_snapshot'
2828LANGUAGE C;
2929
3030
31- CREATE TYPE mtm .node_stateAS (" id" integer ," disabled" bool," disconnected" bool," catchUp" bool," slotLag" bigint ," avgTransDelay" bigint ," lastStatusChange" timestamp ," connStr" text );
31+ CREATE TYPE mtm .node_stateAS (" id" integer ," disabled" bool," disconnected" bool," catchUp" bool," slotLag" bigint ," avgTransDelay" bigint ," lastStatusChange" timestamp ," oldestSnapshot " bigint , " connStr" text );
3232
3333CREATE FUNCTION mtm .get_nodes_state() RETURNS SETOFmtm .node_state
3434AS ' MODULE_PATHNAME' ,' mtm_get_nodes_state'
3535LANGUAGE C;
3636
37- CREATE TYPE mtm .cluster_stateAS (" status" text ," disabledNodeMask" bigint ," disconnectedNodeMask" bigint ," catchUpNodeMask" bigint ," liveNodes" integer ," allNodes" integer ," nActiveQueries" integer ," nPendingQueries" integer ," queueSize" bigint ," transCount" bigint ," timeShift" bigint ," recoverySlot" integer );
37+ CREATE TYPE mtm .cluster_stateAS (" status" text ," disabledNodeMask" bigint ," disconnectedNodeMask" bigint ," catchUpNodeMask" bigint ," liveNodes" integer ," allNodes" integer ," nActiveQueries" integer ," nPendingQueries" integer ," queueSize" bigint ," transCount" bigint ," timeShift" bigint ," recoverySlot" integer ,
38+ " xidHashSize" bigint ," gidHashSize" bigint ," oldestSnapshot" bigint ," configChanges" integer );
3839
3940CREATE FUNCTION mtm .get_cluster_state() RETURNSmtm .cluster_state
4041AS ' MODULE_PATHNAME' ,' mtm_get_cluster_state'