Server IP : 104.21.38.3 / Your IP : 172.70.208.3 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/mysql-test/suite/perfschema/t/ |
Upload File : |
# WL#6839 - GCS Replication: P_S table to show DBSM stats # # This test proofs the existence of the replication_group_member_stats table # and all its fields. Since the table only returns values if the plugin is # loaded, all queries will return "No such row" or "0" # --source include/not_embedded.inc --source include/have_perfschema.inc --let $member_id= query_get_value(SELECT Member_Id from performance_schema.replication_group_member_stats, Member_Id, 1) --let $assert_text= The value of member_id should not be present --let $assert_cond= "$member_id" = "No such row" --source include/assert.inc --let $view_id= query_get_value(SELECT View_Id from performance_schema.replication_group_member_stats, View_Id, 1) --let $assert_text= The value of view_id should not be present --let $assert_cond= "$View_Id" = "No such row" --source include/assert.inc --let $transaction_in_queue= query_get_value(SELECT Count_Transactions_in_queue from performance_schema.replication_group_member_stats, Count_Transactions_in_queue, 1) --let $assert_text= The value of Count_Transactions_in_queue should be 0 --let $assert_cond= "$transaction_in_queue" = 0 --source include/assert.inc --let $certified_transactions= query_get_value(SELECT Count_Transactions_checked from performance_schema.replication_group_member_stats, Count_Transactions_checked, 1) --let $assert_text= The value of Count_Transactions_checked should be 0 --let $assert_cond= "$certified_transactions" = 0 --source include/assert.inc --let $negatively_certified= query_get_value(SELECT Count_conflicts_detected from performance_schema.replication_group_member_stats, Count_conflicts_detected, 1) --let $assert_text= The value of Count_conflicts_detected should be 0 --let $assert_cond= "$negatively_certified" = 0 --source include/assert.inc --let $certification_db_size= query_get_value(SELECT Count_Transactions_rows_validating from performance_schema.replication_group_member_stats, Count_Transactions_rows_validating, 1) --let $assert_text= The value of Count_Transactions_rows_validating should be 0 --let $assert_cond= "$certification_db_size" = 0 --source include/assert.inc --let $stable_set= query_get_value(SELECT Transactions_Committed_all_members from performance_schema.replication_group_member_stats, Transactions_Committed_all_members, 1) --let $assert_text= The value of Transactions_Committed_all_members should be 0 --let $assert_cond= "$stable_set" = 0 --source include/assert.inc --let $last_certified_transaction= query_get_value(SELECT Last_conflict_free_transaction from performance_schema.replication_group_member_stats, Last_conflict_free_transaction, 1) --let $assert_text= The value of Last_conflict_free_transaction should not be present --let $assert_cond= "$last_certified_transaction" = "No such row" --source include/assert.inc