diff options
Diffstat (limited to 'sql/protocol.cc')
-rw-r--r-- | sql/protocol.cc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/protocol.cc b/sql/protocol.cc index d1eb3460fc8..edf74aee05e 100644 --- a/sql/protocol.cc +++ b/sql/protocol.cc @@ -1130,3 +1130,12 @@ bool Protocol_prep::store_time(TIME *tm) buff[0]=(char) length; // Length is stored first return packet->append(buff, length+1, PACKET_BUFFET_EXTRA_ALLOC); } + +#ifdef EMBEDDED_LIBRARY +/* Should be removed when we define the Protocol_cursor's future */ +bool Protocol_cursor::write() +{ + return Protocol_simple::write(); +} +#endif + |