diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2021-08-18 12:26:58 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2021-08-18 12:26:58 +0300 |
commit | cd65845a0eee830b8c783d2ebecae9d305e255c3 (patch) | |
tree | 72ef5515315361568e9734e6253be80213d4a5bf /tests | |
parent | 2d259187a2f585ef6bc5bd66997975ebc4264c66 (diff) | |
parent | f73eea4984b632c1955211b9ea5b54be9dd56975 (diff) | |
download | mariadb-git-cd65845a0eee830b8c783d2ebecae9d305e255c3.tar.gz |
Merge 10.2 into 10.3
MDEV-18734 FIXME: vcol.partition triggers ASAN heap-use-after-free
Diffstat (limited to 'tests')
-rw-r--r-- | tests/mysql_client_test.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/mysql_client_test.c b/tests/mysql_client_test.c index 554eec83644..668fa2133ef 100644 --- a/tests/mysql_client_test.c +++ b/tests/mysql_client_test.c @@ -18128,9 +18128,9 @@ static void test_bug40365(void) if (!opt_silent) fprintf(stdout, "\ntime[%d]: %02d-%02d-%02d ", i, tm[i].year, tm[i].month, tm[i].day); - DIE_UNLESS(tm[i].year == 0); - DIE_UNLESS(tm[i].month == 0); - DIE_UNLESS(tm[i].day == 0); + DIE_UNLESS(tm[i].year == 0); + DIE_UNLESS(tm[i].month == 0); + DIE_UNLESS(tm[i].day == 0); } mysql_stmt_close(stmt); rc= mysql_commit(mysql); |