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

Various post-review fixes

This commit is contained in:
petr@mysql.com
2004-10-26 23:22:12 +04:00
parent 1e46fea310
commit 73aeeaf4ed
16 changed files with 401 additions and 305 deletions

View File

@ -35,7 +35,7 @@ private:
enum { BUFFER_INITIAL_SIZE= 4096 };
/* maximum buffer size is 16Mb */
enum { MAX_BUFFER_SIZE= 16777216 };
uint buffer_size;
size_t buffer_size;
public:
Buffer()
{
@ -50,7 +50,7 @@ public:
public:
char *buffer;
int append(char *start_pos, const char *string, uint len_arg);
int append(uint position, const char *string, uint len_arg);
int reserve(uint position, uint len_arg);
};