diff options
author | Daniel Black <daniel@mariadb.org> | 2022-04-07 14:15:08 +1000 |
---|---|---|
committer | Daniel Black <daniel@mariadb.org> | 2022-04-07 14:15:11 +1000 |
commit | cb75d9c5758c586f72f80d9738d1de0e7c3596ff (patch) | |
tree | 81cc111ea7f2a8fc701b2bb0468937037def2487 | |
parent | 876fac814ac067b69253b38bcfb98e4f280bf2a2 (diff) | |
download | mariadb-git-bb-10.6-danielblack-MDEV-27955-postfix-func_json_notembedded.tar.gz |
MDEV-27955: main.func_json_notembedded postfix -make bigbb-10.6-danielblack-MDEV-27955-postfix-func_json_notembedded
While attempting to reduce the iterations per Monty's suggestion in
MDEV-27955, I wasn't able to succeed in arriving at a predictable
value.
While some functions like json_merge_patch where predictably within
the limit on small values, other functions like json_array_append
where still significantly fast to generate a result and not
ER_STATEMENT_TIMEOUT.
So lets leave this as a big test and hope test machine have sufficient
ram for the lower, but still large results previously committed.
-rw-r--r-- | mysql-test/main/func_json_notembedded.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/main/func_json_notembedded.test b/mysql-test/main/func_json_notembedded.test index 9b2bd4e8d77..9f2595fbac1 100644 --- a/mysql-test/main/func_json_notembedded.test +++ b/mysql-test/main/func_json_notembedded.test @@ -1,5 +1,6 @@ source include/have_profiling.inc; source include/not_embedded.inc; +source include/big_test.inc; set global max_allowed_packet=1073741824; connect u,localhost,root; |