column placeholder for query_response_time_histogram

This commit is contained in:
AntiTopQuark
2024-05-06 05:40:14 +00:00
committed by ob-robot
parent 294b77d690
commit d0b7ba275c
8 changed files with 53 additions and 21 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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