[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

@ -1958,7 +1958,7 @@ ERROR 02000: Unhandled user-defined not found condition
drop function f;
### need has return in mysql function
### https://work.aone.alibaba-inc.com/issue/34977232
###
DROP FUNCTION IF EXISTS `fun6`//
CREATE FUNCTION fun6 ( p1 INT) RETURNS VARCHAR(20)
@ -1996,7 +1996,7 @@ SELECT @num//
DROP FUNCTION IF EXISTS `fun6`//
### label dup
### https://work.aone.alibaba-inc.com/issue/34954831
###
DROP TABLE IF EXISTS result1//
CREATE TABLE result1(
id INT,
@ -2058,7 +2058,7 @@ DROP PROCEDURE IF EXISTS `pro_2`//
DROP PROCEDURE IF EXISTS `pro_3`//
### ### varchar
### ### https://work.aone.alibaba-inc.com/issue/35400448
### ###
### DROP TABLE IF EXISTS t2//
### --error 1074
### CREATE TABLE t2 (
@ -2084,7 +2084,7 @@ DROP PROCEDURE IF EXISTS `pro_3`//
### --error 1305
### SELECT fun_l()//
### char
### https://work.aone.alibaba-inc.com/issue/35399998
###
DROP TABLE IF EXISTS t1//
DROP TABLE IF EXISTS t2//
CREATE TABLE t1 (
@ -2093,7 +2093,7 @@ CREATE TABLE t1 (
d1 CHAR(255)
)//
### --error 1074
### TODO: https://work.aone.alibaba-inc.com/issue/35400448
### TODO:
### CREATE TABLE t2 (
### id INT,
### res1 VARCHAR(128),
@ -2123,7 +2123,7 @@ SELECT * FROM t1//
+------+------+------+
### varbinary
### https://work.aone.alibaba-inc.com/issue/35614023
###
DROP TABLE IF EXISTS t1//
CREATE TABLE t1 (
d1 VARBINARY(65536)
@ -2147,7 +2147,7 @@ SELECT fun_l()//
ERROR 42000: FUNCTION fun_l does not exist
### number
### https://work.aone.alibaba-inc.com/issue/35302277
###
DROP FUNCTION IF EXISTS `fun_l`//
CREATE FUNCTION fun_l() RETURNS DEC(65,30)
BEGIN
@ -2170,7 +2170,7 @@ SELECT fun_2()//
ERROR 42000: FUNCTION fun_2 does not exist
### datetime
### https://work.aone.alibaba-inc.com/issue/35346065
###
DROP TABLE IF EXISTS t2//
CREATE TABLE t2 (
id INT,
@ -2189,7 +2189,7 @@ SELECT fun_l()//
ERROR 42000: FUNCTION fun_l does not exist
### datetime max value insert fail
### https://work.aone.alibaba-inc.com/issue/35345945
###
DROP TABLE IF EXISTS t2//
CREATE TABLE t2 (
id INT,
@ -2219,7 +2219,7 @@ SELECT * FROM t2//
+------+----------------------------------------+---------------------+---------------------+----------------------------+
### int
### https://work.aone.alibaba-inc.com/issue/35302003
###
DROP TABLE IF EXISTS t1//
CREATE TABLE t1 (
id INT,
@ -2244,7 +2244,7 @@ SELECT * FROM t1//
### commit
### rollback
### https://work.aone.alibaba-inc.com/issue/34756672
###
DROP TABLE IF EXISTS t1//
CREATE TABLE t1
( a INT
@ -2341,7 +2341,7 @@ END//
ERROR HY000: Explicit or implicit commit is not allowed in stored function or trigger.
### BIT
### https://work.aone.alibaba-inc.com/issue/35280082
###
DROP TABLE IF EXISTS t1;//
DROP PROCEDURE IF EXISTS `pro_2`;//
CREATE PROCEDURE pro_2()
@ -2353,7 +2353,7 @@ END;
ERROR 42000: Display width out of range for column 'CREATE TABLE t1 (id INT,a BIT(65))' (max = 64)
### load data
### https://work.aone.alibaba-inc.com/issue/34756578
###
DROP TABLE IF EXISTS t1//
CREATE TABLE t1 (a INT)//
INSERT INTO t1 VALUES (1),(2),(3)//
@ -2366,7 +2366,7 @@ END//
ERROR HY000: 'LOAD DATA' is not allowed in stored procedure.
### lock
### https://work.aone.alibaba-inc.com/issue/34756555
###
DROP TABLE IF EXISTS t1//
CREATE TABLE t1 (a INT)//
INSERT INTO t1 VALUES (1),(2),(3)//

View File

@ -7001,7 +7001,7 @@ CALL p1(1);
ERROR HY000: The target table t1 of the INSERT is not insertable-into
CREATE TEMPORARY TABLE t1 (f1 INT);
# t1 still refers to the view since it was inlined
# https://work.aone.alibaba-inc.com/issue/32172786
#
CALL p1(2);
DROP VIEW t1;
# t1 now refers to the temporary table

View File

@ -1722,7 +1722,7 @@ select f(1);
drop function f;
### need has return in mysql function
### https://work.aone.alibaba-inc.com/issue/34977232
###
delimiter //;
DROP FUNCTION IF EXISTS `fun6`//
@ -1753,7 +1753,7 @@ DROP FUNCTION IF EXISTS `fun6`//
delimiter ;//
### label dup
### https://work.aone.alibaba-inc.com/issue/34954831
###
delimiter //;
--disable_warnings ONCE
DROP TABLE IF EXISTS result1//
@ -1813,7 +1813,7 @@ delimiter ;//
delimiter //;
### ### varchar
### ### https://work.aone.alibaba-inc.com/issue/35400448
### ###
### DROP TABLE IF EXISTS t2//
### --error 1074
### CREATE TABLE t2 (
@ -1840,7 +1840,7 @@ delimiter //;
### SELECT fun_l()//
### char
### https://work.aone.alibaba-inc.com/issue/35399998
###
--disable_warnings
DROP TABLE IF EXISTS t1//
DROP TABLE IF EXISTS t2//
@ -1851,7 +1851,7 @@ delimiter //;
d1 CHAR(255)
)//
### --error 1074
### TODO: https://work.aone.alibaba-inc.com/issue/35400448
### TODO:
### CREATE TABLE t2 (
### id INT,
### res1 VARCHAR(128),
@ -1879,7 +1879,7 @@ delimiter //;
### varbinary
### https://work.aone.alibaba-inc.com/issue/35614023
###
--disable_warnings ONCE
DROP TABLE IF EXISTS t1//
CREATE TABLE t1 (
@ -1906,7 +1906,7 @@ SELECT fun_l()//
### number
### https://work.aone.alibaba-inc.com/issue/35302277
###
DROP FUNCTION IF EXISTS `fun_l`//
--error 1426
CREATE FUNCTION fun_l() RETURNS DEC(65,30)
@ -1929,7 +1929,7 @@ END//
SELECT fun_2()//
### datetime
### https://work.aone.alibaba-inc.com/issue/35346065
###
--disable_warnings ONCE
DROP TABLE IF EXISTS t2//
--error 1426
@ -1949,7 +1949,7 @@ END//
SELECT fun_l()//
### datetime max value insert fail
### https://work.aone.alibaba-inc.com/issue/35345945
###
--disable_warnings ONCE
DROP TABLE IF EXISTS t2//
CREATE TABLE t2 (
@ -1973,7 +1973,7 @@ CALL pro_1()//
SELECT * FROM t2//
### int
### https://work.aone.alibaba-inc.com/issue/35302003
###
--disable_warnings ONCE
DROP TABLE IF EXISTS t1//
CREATE TABLE t1 (
@ -1995,7 +1995,7 @@ SELECT * FROM t1//
### commit
### rollback
### https://work.aone.alibaba-inc.com/issue/34756672
###
--disable_warnings ONCE
DROP TABLE IF EXISTS t1//
CREATE TABLE t1
@ -2062,7 +2062,7 @@ BEGIN
END//
### BIT
### https://work.aone.alibaba-inc.com/issue/35280082
###
--disable_warnings ONCE
DROP TABLE IF EXISTS t1;//
DROP PROCEDURE IF EXISTS `pro_2`;//
@ -2075,7 +2075,7 @@ END;
//
### load data
### https://work.aone.alibaba-inc.com/issue/34756578
###
--disable_warnings ONCE
DROP TABLE IF EXISTS t1//
CREATE TABLE t1 (a INT)//
@ -2089,7 +2089,7 @@ BEGIN
END//
### lock
### https://work.aone.alibaba-inc.com/issue/34756555
###
--disable_warnings ONCE
DROP TABLE IF EXISTS t1//
CREATE TABLE t1 (a INT)//

View File

@ -6957,7 +6957,7 @@ SELECT SUM(f2), bug25373(f1) FROM t3 GROUP BY f1 WITH ROLLUP|
DROP FUNCTION bug25373|
DROP TABLE t3|
#todo: https://work.aone.alibaba-inc.com/task/24579977
#todo:
#这里等共享表达式提交之后再将这个case补上
#SELECT SUM(f2), bug25373(f1) FROM t3 GROUP BY bug25373(f1) WITH ROLLUP
@ -8542,7 +8542,7 @@ CALL p1(1);
CREATE TEMPORARY TABLE t1 (f1 INT);
--echo # t1 still refers to the view since it was inlined
--echo # https://work.aone.alibaba-inc.com/issue/32172786
--echo #
#--error ER_NON_INSERTABLE_TABLE
CALL p1(2);