1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Lots of new benchmark runs

Remember filename for temporary files created with mkstemp
Fixed wrongly allocated BDB share structure
Cleanups for SunPRO
This commit is contained in:
monty@donna.mysql.com
2000-12-18 16:09:19 +02:00
parent 5cce198b69
commit 155823ad51
45 changed files with 1065 additions and 308 deletions

View File

@ -204,7 +204,7 @@ public:
char* key;
char* val;
i_string_pair():key(0),val(0) { }
i_string_pair(char* key, char* val) : key(key),val(val) {}
i_string_pair(char* key_arg, char* val_arg) : key(key_arg),val(val_arg) {}
};