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

Backport of DTrace patches from 6.0

This commit is contained in:
Mikael Ronstrom
2008-12-20 11:01:41 +01:00
parent 8d162b444a
commit 16a024c486
46 changed files with 1521 additions and 74 deletions

View File

@ -2788,6 +2788,10 @@ public:
void send_error(uint errcode,const char *err);
int do_deletes();
bool send_eof();
inline ha_rows num_deleted()
{
return deleted;
}
virtual void abort();
};
@ -2831,6 +2835,14 @@ public:
void send_error(uint errcode,const char *err);
int do_updates();
bool send_eof();
inline ha_rows num_found()
{
return found;
}
inline ha_rows num_updated()
{
return updated;
}
virtual void abort();
};