diff options
author | Sergey Vojtovich <svoj@mariadb.org> | 2016-06-14 16:43:08 +0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-14 16:43:08 +0400 |
commit | 5b008d4a270d5c1f2ca713d8a96c488c0f96bdd1 (patch) | |
tree | 80e9f74e0d1f9a7ccaef6d541c0d7d4827d6381f /sql/sql_cache.cc | |
parent | 9f9eb682d54fedf38e02df1d28228e68c10ee77d (diff) | |
parent | effbe7dd7bdf4d27cb8764140a6d00c0b53af0b6 (diff) | |
download | mariadb-git-5b008d4a270d5c1f2ca713d8a96c488c0f96bdd1.tar.gz |
Merge pull request #181 from ottok/ok-debpkg-10.2
General spell fixing in comments and strings
Diffstat (limited to 'sql/sql_cache.cc')
-rw-r--r-- | sql/sql_cache.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sql/sql_cache.cc b/sql/sql_cache.cc index 6d1a8efaf22..06c5f992939 100644 --- a/sql/sql_cache.cc +++ b/sql/sql_cache.cc @@ -2356,7 +2356,7 @@ void Query_cache::invalidate(THD *thd, char *db) } /* The used tables are linked in a circular list; - loop until we return to the begining. + loop until we return to the beginning. */ } while (table_block != tables_blocks); /* @@ -3297,7 +3297,7 @@ Query_cache::invalidate_query_block_list(THD *thd, } /* - Register given table list begining with given position in tables table of + Register given table list beginning with given position in tables table of block SYNOPSIS @@ -4340,7 +4340,7 @@ my_bool Query_cache::move_by_type(uchar **border, { Query_cache_block_table *block_table = new_block->table(j); - // use aligment from begining of table if 'next' is in same block + // use aligment from beginning of table if 'next' is in same block if ((beg_of_table_table <= block_table->next) && (block_table->next < end_of_table_table)) ((Query_cache_block_table *)(beg_of_new_table_table + @@ -4350,7 +4350,7 @@ my_bool Query_cache::move_by_type(uchar **border, else block_table->next->prev= block_table; - // use aligment from begining of table if 'prev' is in same block + // use aligment from beginning of table if 'prev' is in same block if ((beg_of_table_table <= block_table->prev) && (block_table->prev < end_of_table_table)) ((Query_cache_block_table *)(beg_of_new_table_table + @@ -4847,7 +4847,7 @@ my_bool Query_cache::check_integrity(bool locked) if (((uchar*)block) + block->length != ((uchar*)block->pnext)) { DBUG_PRINT("error", - ("block 0x%lx, type %u, ended at 0x%lx, but next block begining at 0x%lx", + ("block 0x%lx, type %u, ended at 0x%lx, but next block beginning at 0x%lx", (ulong) block, (uint) block->type, (ulong) (((uchar*)block) + block->length), (ulong) ((uchar*)block->pnext))); |