summaryrefslogtreecommitdiff
path: root/sql/rpl_rli.h
diff options
context:
space:
mode:
authorSujatha <sujatha.sivakumar@mariadb.com>2021-04-16 09:02:00 +0530
committerSujatha <sujatha.sivakumar@mariadb.com>2021-04-16 09:02:00 +0530
commit70642871bc404a6844120b5df41b07a36edcdb0f (patch)
treeec4919a150fd7558d8453ff4f6dc99b128078362 /sql/rpl_rli.h
parent2674365c8eac7a18065466d5012928adbf603b5d (diff)
downloadmariadb-git-70642871bc404a6844120b5df41b07a36edcdb0f.tar.gz
MDEV-16437: merge 5.7 P_S replication instrumentation and tables
Merge 'replication_applier_status_by_coordinator' table. This table captures SQL_THREAD status in case of both single threaded and multi threaded slave configuration. When multi_source replication is enabled this table will display each source specific SQL_THREAD status. Added new columns for: - LAST_SEEN_TRANSACTION - LAST_TRANS_RETRY_COUNT
Diffstat (limited to 'sql/rpl_rli.h')
-rw-r--r--sql/rpl_rli.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/rpl_rli.h b/sql/rpl_rli.h
index 85e31ef8187..cc807852bf2 100644
--- a/sql/rpl_rli.h
+++ b/sql/rpl_rli.h
@@ -539,7 +539,8 @@ public:
int32 get_sql_delay() { return sql_delay; }
void set_sql_delay(int32 _sql_delay) { sql_delay= _sql_delay; }
time_t get_sql_delay_end() { return sql_delay_end; }
-
+ rpl_gtid last_seen_gtid;
+ ulong last_trans_retry_count;
private: