diff options
author | Sujatha <sujatha.sivakumar@mariadb.com> | 2020-11-24 17:22:47 +0530 |
---|---|---|
committer | Sujatha <sujatha.sivakumar@mariadb.com> | 2020-11-24 17:22:47 +0530 |
commit | ae51d2b279c4d5b71c7cac7395a916649951a8df (patch) | |
tree | 941b412b5fbffa48760d8a6a790a0a9efdd9e821 /sql/rpl_rli.h | |
parent | 0a501de2edf6c2bd81333fa8af1f1303186b27ed (diff) | |
download | mariadb-git-10.6-MDEV-16437.tar.gz |
MDEV-16437: merge 5.7 P_S replication instrumentation and tables10.6-MDEV-16437
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.
Replaced following columns:
- CHANNEL_NAME with CONNECTION_NAME
Added new columns for:
- LAST_SEEN_TRANSACTION
- LAST_TRANS_RETRY_COUNT
Diffstat (limited to 'sql/rpl_rli.h')
-rw-r--r-- | sql/rpl_rli.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/rpl_rli.h b/sql/rpl_rli.h index e3b59aa615c..ab221f64b54 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: |