This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use sys; | |
DROP VIEW IF EXISTS replication_status_full; | |
CREATE | |
ALGORITHM = MERGE | |
SQL SECURITY INVOKER | |
VIEW replication_status_full | |
AS | |
SELECT | |
concat(s.channel_name, ' (', w.worker_id,')') AS channel, | |
c.host, |