aressu1985

Results 102 comments of aressu1985

mysql> select bin(concat_ws(" ",find_in_set('b','a,b,c,d'))); +--------------------------------------------+ | bin(concat_ws( , find_in_set(b, a,b,c,d))) | +--------------------------------------------+ | 10 | +--------------------------------------------+ 1 row in set (0.00 sec)

[sudong@mo-srv-128 test]$ grep -r "#3657" cases/ cases/function/func_string_findinset.test:-- @bvt:issue#3657

need to confirm this issue next week

it is a problem of stability test, and I trace this type of issue every daoy , when stability is OK , I will process all of these issues.

now sysbench mixed cases test still cause other panics , the this issue will last being in tracking

this can be closed , and r-w is tracking by #6049

mysql> CREATE TABLE `t1` ( -> `id` int(11) NOT NULL , -> `date` int(10) default NULL, -> `text` varchar(32) NOT NULL -> ); Query OK, 0 rows affected (0.01 sec)...

mysql> select cast('2022-02-01' as date)-cast('2022-01-01' as date); +-----------------------------------------------------+ | cast(2022-02-01 as date) - cast(2022-01-01 as date) | +-----------------------------------------------------+ | 31 | +-----------------------------------------------------+ 1 row in set (0.00 sec) mysql>

mysql> select a + a from bb; ERROR 20203 (HY000): invalid argument operator +, bad value [CHAR CHAR] mysql> SELECT FROM_UNIXTIME(2147483647) AS c1, FROM_UNIXTIME(2147483648) AS c2, FROM_UNIXTIME(2147483647.9999999) AS c3, FROM_UNIXTIME(32536771199)...