diff options
author | Otto Kekäläinen <otto@mariadb.org> | 2017-11-15 12:37:32 +0800 |
---|---|---|
committer | Vicențiu-Marian Ciorbaru <cvicentiu@gmail.com> | 2018-01-12 16:49:02 +0200 |
commit | c9c28bef3cb4cf21a6fee46f5ea3339867fbb07a (patch) | |
tree | 869b02d40aa5b158193cb74ce056ddd8343fa667 /Docs | |
parent | 21239bb0fd2859968d3c42dcc56712a8978b6207 (diff) | |
download | mariadb-git-c9c28bef3cb4cf21a6fee46f5ea3339867fbb07a.tar.gz |
Minor spelling fixes in code comments, docs and output
This commit does not touch any variable names or any other actual code,
and thus should not in any way affect how the code works.
Diffstat (limited to 'Docs')
-rw-r--r-- | Docs/sp-imp-spec.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Docs/sp-imp-spec.txt b/Docs/sp-imp-spec.txt index f2794e14793..0526cc43f81 100644 --- a/Docs/sp-imp-spec.txt +++ b/Docs/sp-imp-spec.txt @@ -323,7 +323,7 @@ One "obvious" solution would be to simply push "mysql.proc" to the list of tables used by the query, but this implies a "join" with this table if the query is a select, so it doesn't work (and we can't exclude this - table easily; since a priviledged used might in fact want to search + table easily; since a privileged used might in fact want to search the proc table). Another solution would of course be to allow the opening and closing of the mysql.proc table during a query execution, but this it not @@ -400,7 +400,7 @@ instruction. Calling and returning from a CONTINUE handler poses some special - problems. Since we need to return to the point after its invokation, + problems. Since we need to return to the point after its invocation, we push the return location on a stack in the sp_rcontext (this is done by the exectution loop). The handler then ends with a special instruction, sp_instr_hreturn, which returns to this location. |