diff options
author | Sachin Setiya <sachinsetia1001@gmail.com> | 2018-04-19 14:31:20 +0530 |
---|---|---|
committer | Sachin Setiya <sachinsetia1001@gmail.com> | 2018-04-19 16:04:23 +0530 |
commit | 419385dbf10453b17a370fd9e5bd934d09e0b440 (patch) | |
tree | d2a82919e9c8f680697d16b37157cd434cb0eb25 /tests | |
parent | 547b00d910b8d5e1526c00aeac9425b182cbea5e (diff) | |
download | mariadb-git-419385dbf10453b17a370fd9e5bd934d09e0b440.tar.gz |
Mdev-10664 Add statuses about optimistic parallel replication stalls
In this commit we are adding three more status variable to SHOW SLAVE
STATUS. Slave_DDL_Events and Slave_Non_Transactional_Events.
Slave_DDL_Groups:- This status variable counts the occurrence of DDL
statements
Slave_Non_Transactional_Groups:- This variable count the occurrence
of non-transnational event group.
Slave_Transactional_Groups:- This variable count the occurrence
of transnational event group.
Patch Credit:- Kristian Nielsen
Diffstat (limited to 'tests')
-rw-r--r-- | tests/mysql_client_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/mysql_client_test.c b/tests/mysql_client_test.c index e90453411cb..5a275c8fcbf 100644 --- a/tests/mysql_client_test.c +++ b/tests/mysql_client_test.c @@ -467,7 +467,7 @@ static void test_prepare_simple() strmov(query, "SHOW SLAVE STATUS"); stmt= mysql_simple_prepare(mysql, query); check_stmt(stmt); - DIE_UNLESS(mysql_stmt_field_count(stmt) == 50); + DIE_UNLESS(mysql_stmt_field_count(stmt) == 53); mysql_stmt_close(stmt); /* show master status */ |