summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHollow Man <hollowman@hollowman.ml>2021-03-11 09:50:29 +0800
committerDaniel Black <daniel@mariadb.org>2021-03-11 13:25:44 +1100
commitf386fdd70e05504902a1945d01320ffeccb75a34 (patch)
tree6b89d6d22c708ba96a3351e3860bd9014eee5c4c
parentbda8a2a63aa7da9ae504c3049e5ce1b03bb1f5c9 (diff)
downloadmariadb-git-f386fdd70e05504902a1945d01320ffeccb75a34.tar.gz
Fix several typos in sql/item_jsonfunc.cc
insencitive -> insensitive excapint -> excipient Jost -> Just belive -> believe
-rw-r--r--sql/item_jsonfunc.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/item_jsonfunc.cc b/sql/item_jsonfunc.cc
index 032ecb1bb91..44ce69a482f 100644
--- a/sql/item_jsonfunc.cc
+++ b/sql/item_jsonfunc.cc
@@ -23,7 +23,7 @@
/*
Compare ASCII string against the string with the specified
character set.
- Only compares the equality, case insencitive.
+ Only compares the equality, case insensitive.
*/
static bool eq_ascii_string(const CHARSET_INFO *cs,
const char *ascii,
@@ -1115,7 +1115,7 @@ static int check_contains(json_engine_t *js, json_engine_t *value)
if (value->value_type != JSON_VALUE_STRING)
return FALSE;
/*
- TODO: make proper json-json comparison here that takes excapint
+ TODO: make proper json-json comparison here that takes excipient
into account.
*/
return value->value_len == js->value_len &&
@@ -1403,7 +1403,7 @@ longlong Item_func_json_contains_path::val_int()
n_found= arg_count - 2;
}
else
- n_found= 0; /* Jost to prevent 'uninitialized value' warnings */
+ n_found= 0; /* Just to prevent 'uninitialized value' warnings */
result= 0;
while (json_get_path_next(&je, &p) == 0)
@@ -3373,7 +3373,7 @@ bool Item_func_json_search::fix_length_and_dec()
/*
It's rather difficult to estimate the length of the result.
- I belive arglen^2 is the reasonable upper limit.
+ I believe arglen^2 is the reasonable upper limit.
*/
if (args[0]->max_length > SQR_MAX_BLOB_WIDTH)
max_length= MAX_BLOB_WIDTH;