17 lines
551 B
Plaintext
17 lines
551 B
Plaintext
select count_log_meta_get_in_cache from information_schema.alisql_cluster_consensus_status;
|
|
count_log_meta_get_in_cache
|
|
#
|
|
select count_log_meta_get_total from information_schema.alisql_cluster_consensus_status;
|
|
count_log_meta_get_total
|
|
#
|
|
use test;
|
|
create table t (id int);
|
|
insert into t values (1);
|
|
select count_log_meta_get_in_cache from information_schema.alisql_cluster_consensus_status;
|
|
count_log_meta_get_in_cache
|
|
#
|
|
select count_log_meta_get_total from information_schema.alisql_cluster_consensus_status;
|
|
count_log_meta_get_total
|
|
#
|
|
drop table t;
|