From aa65bd1beb4b10c4cd21f26a9e18d40cac6dfeee Mon Sep 17 00:00:00 2001 From: Georg Richter Date: Mon, 21 Sep 2020 18:25:10 +0200 Subject: [PATCH] Skip test_returning, since it's not fixed on server yet (MDEV-23768) --- unittest/libmariadb/ps_bugs.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/unittest/libmariadb/ps_bugs.c b/unittest/libmariadb/ps_bugs.c index c829cf3a..c9292b91 100644 --- a/unittest/libmariadb/ps_bugs.c +++ b/unittest/libmariadb/ps_bugs.c @@ -5205,6 +5205,9 @@ static int test_returning(MYSQL *mysql) MYSQL_RES *result; int rc; + diag("MDEV-23768 not fixed yet"); + return SKIP; + rc= mysql_query(mysql, "CREATE TEMPORARY TABLE t1 (a int not null auto_increment primary key, b json)"); check_mysql_rc(rc, mysql);