summaryrefslogtreecommitdiff
path: root/mysql-test/main/func_if.test
diff options
context:
space:
mode:
authorOleksandr Byelkin <sanja@mariadb.com>2022-10-14 09:04:54 +0200
committerOleksandr Byelkin <sanja@mariadb.com>2022-10-14 09:04:54 +0200
commit7cad2e94b1664a2185b873bc6f801b98fcefa817 (patch)
tree5aa2feff7ca99a0e857c892fe8685f774a9e8a70 /mysql-test/main/func_if.test
parent0cddb1ac99cbecaddd08bfe5355c034c01c0c406 (diff)
parent184e65954b88266bd426de1c82973bf54a88afb1 (diff)
downloadmariadb-git-7cad2e94b1664a2185b873bc6f801b98fcefa817.tar.gz
Merge branch 'bb-10.4-vp-MDEV-27691' into 10.4
Diffstat (limited to 'mysql-test/main/func_if.test')
-rw-r--r--mysql-test/main/func_if.test4
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;
#