1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Rename send_eof() to my_eof() for consistency with my_ok() and my_error()

This commit is contained in:
kostja@dipika.(none)
2008-02-19 15:58:08 +03:00
parent f106d9738a
commit 72495c968b
17 changed files with 37 additions and 37 deletions

View File

@ -995,7 +995,7 @@ public:
DA_EMPTY= 0,
/** Set whenever one calls my_ok(). */
DA_OK,
/** Set whenever one calls send_eof(). */
/** Set whenever one calls my_eof(). */
DA_EOF,
/** Set whenever one calls my_error() or my_message(). */
DA_ERROR,
@ -1063,7 +1063,7 @@ private:
Copied from thd->server_status when the diagnostics area is assigned.
We need this member as some places in the code use the following pattern:
thd->server_status|= ...
send_eof(thd);
my_eof(thd);
thd->server_status&= ~...
Assigned by OK, EOF or ERROR.
*/
@ -2151,7 +2151,7 @@ my_ok(THD *thd, ha_rows affected_rows= 0, ulonglong id= 0,
/** A short cut for thd->main_da.set_eof_status(). */
inline void
send_eof(THD *thd)
my_eof(THD *thd)
{
thd->main_da.set_eof_status(thd);
}