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

Upgraded to latest handlersocket code. This fixed LP:766870 "Assertion `next_insert_id == 0' failed with handlersocket"

sql/handler.cc:
  Added DBUG_ code
This commit is contained in:
Michael Widenius
2011-06-07 14:19:49 +03:00
parent 2740edcf56
commit 8d7f810894
46 changed files with 18522 additions and 230 deletions

View File

@ -84,7 +84,7 @@ struct string_buffer : private noncopyable {
}
void space_wrote(size_t len) {
len = std::min(len, alloc_size - end_offset);
end_offset = std::min(end_offset + len, alloc_size);
end_offset += len;
}
template <size_t N>
void append_literal(const char (& str)[N]) {