limit DEFAULT_CTX_ID of tenant_500 from 4G to 2G

This commit is contained in:
tushicheng
2023-09-28 02:09:45 +00:00
committed by ob-robot
parent 58a8ac5edc
commit 42f577e33d
96 changed files with 9489 additions and 9477 deletions

View File

@ -92,7 +92,7 @@ while ($cnt <= 29)
inc $cnt;
}
#verify bugfix of
#verify bugfix of
--disable_warnings
drop table if exists t1;
--enable_warnings

View File

@ -168,7 +168,7 @@ while ($left <= $cnt)
select case when 'a' = 'a' then 'branch1' when 'b' then c1 else c2 end from t1;
--echo // 结果应该为2,且when expr上面都应该 有bool expr
--echo // TODO: 没有出现预期的warning
--echo // cast的bug:
--echo // cast的bug:
select case when 'a' then 'str' when 'b' then c1 else c2 end from t1;
--echo // 结果应该为'branch2',且if表达式会被转为case表达式,但是不应该有bool expr,因为判断本身就带有布尔语义
select if ('a' = 'b', c1, 'branch2') from t1;

View File

@ -29,7 +29,7 @@ select char_length(c2) from t1;
select char_length(c3) from t1;
select char_length(c4) from t1;
select char_length(c5) from t1;
# bug here:
# bug here:
# select char_length(c6) from t1;

View File

@ -162,7 +162,7 @@ drop table t1;
--echo ##bugfix:
--echo ##bugfix:
create table t1 (pk double) PARTITION BY key (pk) partitions 1;
insert into t1 values( NULLIF( 100.2345, 1 ));
select * from t1;
@ -189,7 +189,7 @@ from
--enable_result_log
##bugfix:
##bugfix:
create table t1 (pk int);
insert into t1 values (1);
select pk, ( NULLIF( 14152561829011783680, INSTR( TRIM( SUBSTRING( HEX( SUBSTRING( 'a',1, LEAST( 218, 20 ) ) ) , 1 , LEAST( 218, 20 ) ) ), 'oh' ) ) ) s , INSTR( TRIM( SUBSTRING( HEX( SUBSTRING( 'a',1, LEAST( 218, 20 ) ) ) , 1 , LEAST( 218, 20 ) ) ), 'oh' ) s2 from t1;
@ -210,7 +210,7 @@ desc t2;
select * from t2;
drop table t1,t2;
##
##
select collation(nullif('a', binary 'b'));
## test nullif with enumset parameter.

View File

@ -73,7 +73,7 @@ while ($left <= $cnt)
--sleep 2
--explain_protocol 0
set timestamp = 1600000000;
--echo ##bugfix:
--echo ##bugfix:
select ifnull(null, utc_time(4));
--disable_warnings

View File

@ -46,7 +46,7 @@ select substring_index(1.414, 1, 2);
--disable_warnings
select c1, substring_index("a,b,c,d", ",", c1), c2, substring_index("a,b,c,d", ",", c2), c3, substring_index("a,b,c,d", ",", c3), c4, substring_index("a,b,c,d", ",", c4) from t1;
--echo //for
--echo //for
drop table if exists t2, t3;
create table t2(c1 varchar(20));
create table t3(c1 varchar(20));

View File

@ -37,7 +37,7 @@ alter system flush plan cache global;
set @@ob_enable_plan_cache = 0;
let $cnt=22;
let $left=1;
## bug:
## bug:
## timestampadd(second, c14/c16, c19/c20)四种情况结果有误
while ($left <= $cnt)
{

View File

@ -51,7 +51,7 @@ select concat('[', trim(both c2 from c1), ']') x from t1;
drop table if exists t1;
drop view if exists v1;
--enable_warnings
--echo // bug:
--echo // bug:
create view v1 as select nullif(trim(repeat('abc', 1+1)), 'a');
desc v1;
select * from v1;

View File

@ -66,7 +66,7 @@ select truncate(1.11, c_null) from t1;
select truncate(c_null, -1) from t1;
## truncate(c20, c16) 结果与mysql不一致,cast(c16 as signed)的结果发生变化导致truncate的结果变化
## cast的结果符合预期,tuncate的结果不符合预期。bug:
## cast的结果符合预期,tuncate的结果不符合预期。bug:
let $cnt=22;
let $left=1;
while ($left <= $cnt)

View File

@ -99,7 +99,7 @@ select * from t2;
drop table t1;
drop table t2;
--echo bug:
--echo bug:
--disable_warnings
drop table if exists t2;
--enable_warnings