@bitblit/ratchet-rdbms
Version:
Ratchet tooling for working with relational databases
53 lines (52 loc) • 1.56 kB
TypeScript
export interface MysqlSlaveStatus {
Slave_IO_State: string;
Master_Host: string;
Master_User: string;
Master_Port: number;
Connect_Retry: number;
Master_Log_File: string;
Read_Master_Log_Pos: number;
Relay_Log_File: string;
Relay_Log_Pos: number;
Relay_Master_Log_File: string;
Slave_IO_Running: string;
Slave_SQL_Running: string;
Replicate_Do_DB: string;
Replicate_Ignore_DB: string;
Replicate_Do_Table: string;
Replicate_Ignore_Table: string;
Replicate_Wild_Do_Table: string;
Replicate_Wild_Ignore_Table: string;
Last_Errno: number;
Last_Error: string;
Skip_Counter: number;
Exec_Master_Log_Pos: number;
Relay_Log_Space: number;
Until_Condition: string;
Until_Log_File: string;
Until_Log_Pos: number;
Master_SSL_Allowed: string;
Master_SSL_CA_File: string;
Master_SSL_CA_Path: string;
Master_SSL_Cert: string;
Master_SSL_Cipher: string;
Master_SSL_Key: string;
Seconds_Behind_Master: number;
Master_SSL_Verify_Server_Cert: string;
Last_IO_Errno: number;
Last_IO_Error: string;
Last_SQL_Errno: number;
Last_SQL_Error: string;
Replicate_Ignore_Server_Ids: string;
Master_Server_Id: number;
Master_SSL_Crl: string;
Master_SSL_Crlpath: string;
Using_Gtid: string;
Gtid_IO_Pos: string;
Replicate_Do_Domain_Ids: string;
Replicate_Ignore_Domain_Ids: string;
Parallel_Mode: string;
SQL_Delay: number;
SQL_Remaining_Delay: string;
Slave_SQL_Running_State: string;
}