Commit 63dcccd5 authored by Davi Arnaut's avatar Davi Arnaut

Backport of Bug#37843 to mysql-next-mr

sql/sql_cache.cc:
  Swap return value description.
parent c0779665
......@@ -1330,12 +1330,12 @@ def_week_frmt: %lu, in_trans: %d, autocommit: %d",
@param thd Pointer to the thread handler
@param sql A pointer to the sql statement *
@param query_length Length of the statement in characters
@return status code
@retval 1 Query was not cached.
@retval 0 The query was cached and user was sent the result.
@retval -1 The query was cached but we didn't have rights to use it.
@retval 0 Query was not cached.
@retval 1 The query was cached and user was sent the result.
@retval -1 The query was cached but we didn't have rights to use it.
In case of -1, no error is sent to the client.
*) The buffer must be allocated memory of size:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment