column placeholder for query_response_time_histogram
This commit is contained in:
@ -4075,9 +4075,9 @@ cnt
|
||||
1
|
||||
desc information_schema.QUERY_RESPONSE_TIME;
|
||||
Field Type Null Key Default Extra
|
||||
RESPONSE_TIME bigint(14) NO
|
||||
COUNT bigint(14) NO
|
||||
TOTAL bigint(14) NO
|
||||
RESPONSE_TIME bigint(20) NO
|
||||
COUNT bigint(20) NO
|
||||
TOTAL bigint(20) NO
|
||||
select /*+QUERY_TIMEOUT(60000000)*/ count(*) as cnt from (select * from information_schema.QUERY_RESPONSE_TIME limit 1);
|
||||
cnt
|
||||
1
|
||||
|
||||
@ -5637,9 +5637,9 @@ cnt
|
||||
1
|
||||
desc information_schema.QUERY_RESPONSE_TIME;
|
||||
Field Type Null Key Default Extra
|
||||
RESPONSE_TIME bigint(14) NO
|
||||
COUNT bigint(14) NO
|
||||
TOTAL bigint(14) NO
|
||||
RESPONSE_TIME bigint(20) NO
|
||||
COUNT bigint(20) NO
|
||||
TOTAL bigint(20) NO
|
||||
select /*+QUERY_TIMEOUT(60000000)*/ count(*) as cnt from (select * from information_schema.QUERY_RESPONSE_TIME limit 1);
|
||||
cnt
|
||||
1
|
||||
|
||||
@ -3393,9 +3393,10 @@ Field Type Null Key Default Extra
|
||||
tenant_id bigint(20) NO NULL
|
||||
svr_ip varchar(46) NO NULL
|
||||
svr_port bigint(20) NO NULL
|
||||
response_time bigint(14) NO 0
|
||||
count bigint(14) NO 0
|
||||
total bigint(14) NO 0
|
||||
response_time bigint(20) NO 0
|
||||
count bigint(20) NO 0
|
||||
total bigint(20) NO 0
|
||||
sql_type varchar(128) NO
|
||||
select /*+QUERY_TIMEOUT(60000000)*/ IF(count(*) >= 0, 1, 0) from oceanbase.__all_virtual_query_response_time;
|
||||
IF(count(*) >= 0, 1, 0)
|
||||
1
|
||||
|
||||
@ -7213,9 +7213,10 @@ Field Type Null Key Default Extra
|
||||
tenant_id bigint(20) NO NULL
|
||||
svr_ip varchar(46) NO NULL
|
||||
svr_port bigint(20) NO NULL
|
||||
response_time bigint(14) NO 0
|
||||
count bigint(14) NO 0
|
||||
total bigint(14) NO 0
|
||||
response_time bigint(20) NO 0
|
||||
count bigint(20) NO 0
|
||||
total bigint(20) NO 0
|
||||
sql_type varchar(128) NO
|
||||
select /*+QUERY_TIMEOUT(60000000)*/ IF(count(*) >= 0, 1, 0) from oceanbase.__all_virtual_query_response_time;
|
||||
IF(count(*) >= 0, 1, 0)
|
||||
1
|
||||
|
||||
Reference in New Issue
Block a user