Skip to content

Commit 5a35fff

Browse files
committed
Fixed typos
- Some of the typos was because a Russian character was accidentally used instead of an ascii one.
1 parent 882f6fa commit 5a35fff

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

mysys/mf_iocache.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1335 USA */
1717

1818
/*
19-
Cashing of files with only does (sequential) read or writes of fixed-
19+
Caching of files with only does (sequential) read or writes of fixed-
2020
length records. A read isn't allowed to go over file-length. A read is ok
2121
if it ends at file-length and next read can try to read after file-length
2222
(and get a EOF-error).

plugin/server_audit/server_audit.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2691,7 +2691,7 @@ static int server_audit_init(void *p __attribute__((unused)))
26912691
PLUGIN_STR_VERSION, PLUGIN_DEBUG_VERSION);
26922692

26932693
/* The Query Cache shadows TABLE events if the result is taken from it */
2694-
/* so we warn users if both Query Cashe and TABLE events enabled. */
2694+
/* so we warn users if both Query Cache and TABLE events enabled. */
26952695
if (!started_mysql && FILTER(EVENT_TABLE))
26962696
{
26972697
ulonglong *qc_size= (ulonglong *) dlsym(RTLD_DEFAULT, "query_cache_size");

sql/sql_lex.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11054,7 +11054,7 @@ void mark_or_conds_to_avoid_pushdown(Item *cond)
1105411054
After that the transformed condition is attached into attach_to_conds
1105511055
list.
1105611056
2. Part of some other condition c1 that can't be entirely pushed
11057-
(if с1 isn't marked with any flag).
11057+
(if c1 isn't marked with any flag).
1105811058
1105911059
For example:
1106011060

storage/maria/ma_statrec.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ my_bool _ma_write_static_record(MARIA_HA *info, const uchar *record)
4646
return(2);
4747
}
4848
if (info->opt_flag & WRITE_CACHE_USED)
49-
{ /* Cash in use */
49+
{ /* Cache in use */
5050
if (my_b_write(&info->rec_cache, record,
5151
info->s->base.reclength))
5252
goto err;

0 commit comments

Comments
 (0)