[fix] remove some internal urls and emails

This commit is contained in:
obdev
2023-03-17 20:55:23 +08:00
committed by ob-robot
parent e386747097
commit 8ce2f275c4
647 changed files with 905 additions and 905 deletions

View File

@ -550,7 +550,7 @@ desc t1;
+----------------------------------+--------------+------+-----+---------+-------+
drop table t1;
## bugfix#https://work.aone.alibaba-inc.com/issue/36895309
## bugfix#
drop table if exists T_36895309;
CREATE TABLE T_36895309(A_0 INT,A_1 INT,A_2 VARCHAR(20),A_3 FLOAT,A_4 DATE);
INSERT INTO T_36895309 VALUES(1,1,'A',1.23,'1999-09-09'),(2,-1,'nb',3.21,'1111-11-11'),(3,0,'#',6666.6666,'11-11-11'),(4,NULL,NULL,NULL,NULL);

View File

@ -47,7 +47,7 @@ select ceil(null);
select ceil("13547370213547370213547370213547370201354737021354737021354737021354737021354737021354737021354737021354737021354737021354737021354737021354737021354737020.0000135473702135473702135473702135473702135473702135473702135473702135473702013547370213547370201354737021354737021354737021354737021354737021354737021354737021.0000135473702135473702135473702135473702135473702111111111111111111");
select ceil("13547370213547370213547370213547370201354737021354737021354737021354737021354737021354737021354737021354737021354737021354737021354737021354737021354737020.0000135473702135473702135473702135473702135473702135473702135473702135473702013547370213547370201354737021354737021354737021354737021354737021354737021354737021.0000135473702135473702135473702135473702135473702catters billet chloroplast's'");
##bugfix: https://work.aone.alibaba-inc.com/issue/31536811
##bugfix:
--disable_warnings
drop table if exists t1;
--enable_warnings

View File

@ -69,7 +69,7 @@ SELECT CONVERT_TZ('2021-01-01 07:11:00', '+05:12','MET');
SELECT CONVERT_TZ('2021-01-01 07:11:00', '+03:32','PRC');
SELECT CONVERT_TZ('2021-01-01 07:11:00', '+11:32','PRC');
##bugfix: https://work.aone.alibaba-inc.com/issue/37089894
##bugfix:
SELECT CONVERT_TZ('2004-01-01 12:00:00','-13:00','+10:00');
SELECT CONVERT_TZ('2004-01-01 12:00:00','-12:00','+14:00');
SELECT CONVERT_TZ('2004-01-01 12:00:00','-13:00','ABC');
@ -93,7 +93,7 @@ insert into t values(convert_tz('0000-01-01 01:00:00', '+00:00', '-02:00'));
select * from t;
##bugfix: https://work.aone.alibaba-inc.com/issue/37089982
##bugfix:
SELECT CONVERT_TZ(123456,'-12:00','+10:00');
SELECT CONVERT_TZ('','-12:00','+10:00');
SELECT CONVERT_TZ('aa','-12:00','+10:00');
@ -102,14 +102,14 @@ SELECT CONVERT_TZ('1asd561ad','-12:00','+10:00');
SELECT CONVERT_TZ('¥¥%……&*¥','-12:00','+10:00');
##bugfix: https://work.aone.alibaba-inc.com/issue/37090102
##bugfix:
drop table t;
create table t(c1 year);
insert into t values('1901'),('2155'), ('0000'), ('0001');
SELECT c1, CONVERT_TZ(c1,'+00:00','+00:00') from t;
##bugfix: https://work.aone.alibaba-inc.com/issue/37090351
##bugfix:
drop table t;
create table t(a1 int,a2 year,c1 timestamp,c2 timestamp);
insert into t values(1,'1998','1998-12-12 12:12:12','2038-01-19 03:14:07');
@ -127,7 +127,7 @@ select c3, convert_tz(c3, '+00:00', '+08:00') from t;
drop table t;
##bugfix: https://work.aone.alibaba-inc.com/issue/38186028
##bugfix:
SELECT CONVERT_TZ('2007-03-11 2:00:00','US/Eastern','US/Central') AS time1,
CONVERT_TZ('2007-03-11 2:00:01','US/Eastern','US/Central') AS time2,
CONVERT_TZ('2007-03-11 3:00:00','US/Eastern','US/Central') AS time3,

View File

@ -160,7 +160,7 @@ desc t1;
drop table t1;
## bugfix#https://work.aone.alibaba-inc.com/issue/36895309
## bugfix#
--disable_warnings
drop table if exists T_36895309;
--enable_warnings

View File

@ -401,7 +401,7 @@ select * from t1 where name regexp '(A[1])|(A[2])|(A[3])|(A[4])|(A[5])|(A[6])|(A
select * from t1 where name regexp 'CC[13]1|a{21}[23][EO][123][Es][12]a{15}aa[34][EW]aaaaaaa[X]a';
select * from t1 where name regexp 'a?b';
##bug:https://aone.alibaba-inc.com/req/34761589
##bug:
select * from t1 where name regexp 'a' "bc" '|de';
select * from t1 where name regexp "a" '|' "b" '|' "c";
select * from t1 where name regexp "a"'()'"b";
@ -437,7 +437,7 @@ insert into t1 values('abcde_');
select a as c1u from t1 where a rlike 'ab\_def';
drop table t1;
##bug:https://work.aone.alibaba-inc.com/issue/25186566
##bug:
--disable_warnings
drop table if exists t;
--enable_warnings