diff options
author | Oleksandr Byelkin <sanja@mariadb.com> | 2022-10-14 08:29:11 +0200 |
---|---|---|
committer | Oleksandr Byelkin <sanja@mariadb.com> | 2022-10-14 08:29:11 +0200 |
commit | 89e3815b395e29a0e2c282a08ed6326a3330a2aa (patch) | |
tree | 7343733389a1868b516f6ab0a1433998f96642d7 /mysql-test/main/func_if.test | |
parent | 1f5615360cce22875ae2ab92386704b2ba363d8b (diff) | |
parent | 72ba96a48eb3e99a967e0489cc79f378e865e3fd (diff) | |
download | mariadb-git-89e3815b395e29a0e2c282a08ed6326a3330a2aa.tar.gz |
Merge branch 'bb-10.3-vp-MDEV-27691' into 10.3
Diffstat (limited to 'mysql-test/main/func_if.test')
-rw-r--r-- | mysql-test/main/func_if.test | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mysql-test/main/func_if.test b/mysql-test/main/func_if.test index dc6749da26f..d18bdc3070e 100644 --- a/mysql-test/main/func_if.test +++ b/mysql-test/main/func_if.test @@ -119,6 +119,8 @@ select if(0, 18446744073709551610, 18446744073709551610); CREATE TABLE t1(a DECIMAL(10,3)); +#enable after fix MDEV-27871 +--disable_view_protocol # check : should be fast. more than few secs means failure. SELECT t1.a, IF((ROUND(t1.a,2)=1), 2, @@ -152,7 +154,7 @@ SELECT t1.a, IF((ROUND(t1.a,2)=1), 2, IF((ROUND(t1.a,2)=1), 2,0)))))))))))))))))))))))))))))) + 1 FROM t1; - +--enable_view_protocol DROP TABLE t1; # |