diff options
author | Oleksandr Byelkin <sanja@mariadb.com> | 2022-08-10 12:21:08 +0200 |
---|---|---|
committer | Oleksandr Byelkin <sanja@mariadb.com> | 2022-08-10 12:21:08 +0200 |
commit | 65e8506ca9d03967191b6ed207cf107d311f7f99 (patch) | |
tree | 3076ff798884b52655a5961be21e799708a4b628 /client/mysqlslap.c | |
parent | 6adfce9c8d2a63a259dd0504600271498dcda228 (diff) | |
parent | faddcf3c395da640b760c3f701f5bc1f3baae6c4 (diff) | |
download | mariadb-git-65e8506ca9d03967191b6ed207cf107d311f7f99.tar.gz |
Merge branch '10.3' into bb-10.4-releasemariadb-10.4.26
Diffstat (limited to 'client/mysqlslap.c')
-rw-r--r-- | client/mysqlslap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/mysqlslap.c b/client/mysqlslap.c index 249dc6e073f..f491bea6c79 100644 --- a/client/mysqlslap.c +++ b/client/mysqlslap.c @@ -23,7 +23,7 @@ then reporting the timing of each stage. MySQL slap runs three stages: - 1) Create schema,table, and optionally any SP or data you want to beign + 1) Create schema,table, and optionally any SP or data you want to begin the test with. (single client) 2) Load test (many clients) 3) Cleanup (disconnection, drop table if specified, single client) @@ -2017,7 +2017,7 @@ parse_option(const char *origin, option_string **stmt, char delm) char *buffer_ptr; /* - Return an error if the length of the any of the comma seprated value + Return an error if the length of the comma separated values exceeds HUGE_STRING_LENGTH. */ if ((size_t)(retstr - ptr) > HUGE_STRING_LENGTH) @@ -2063,7 +2063,7 @@ parse_option(const char *origin, option_string **stmt, char delm) char *origin_ptr; /* - Return an error if the length of the any of the comma seprated value + Return an error if the length of any of the comma separated values exceeds HUGE_STRING_LENGTH. */ if (strlen(ptr) > HUGE_STRING_LENGTH) |