diff options
author | unknown <kostja@dipika.(none)> | 2008-02-19 15:45:21 +0300 |
---|---|---|
committer | unknown <kostja@dipika.(none)> | 2008-02-19 15:45:21 +0300 |
commit | 14021c96c464406812f84bec45c5f73ac0b96e1a (patch) | |
tree | 2135e26bf3867a57e788b8bfa932c8f511ce53b4 /sql/sql_class.cc | |
parent | ead02981eae47130fe5d205a11336b3c00225be1 (diff) | |
download | mariadb-git-14021c96c464406812f84bec45c5f73ac0b96e1a.tar.gz |
Rename send_ok to my_ok. Similarly to my_error, it only records the status,
does not send it to the client.
Diffstat (limited to 'sql/sql_class.cc')
-rw-r--r-- | sql/sql_class.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_class.cc b/sql/sql_class.cc index a24266c775c..1fb3fc74151 100644 --- a/sql/sql_class.cc +++ b/sql/sql_class.cc @@ -1583,7 +1583,7 @@ bool select_to_file::send_eof() function, SELECT INTO has to have an own SQLCOM. TODO: split from SQLCOM_SELECT */ - ::send_ok(thd,row_count); + ::my_ok(thd,row_count); } file= -1; return error; @@ -2533,7 +2533,7 @@ bool select_dumpvar::send_eof() function, SELECT INTO has to have an own SQLCOM. TODO: split from SQLCOM_SELECT */ - ::send_ok(thd,row_count); + ::my_ok(thd,row_count); return 0; } |