1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Updated benchmarks

Portability fixes.
Fixed bug in mysqlbinlog when detecting binary log version
This commit is contained in:
monty@hundin.mysql.fi
2001-12-18 05:34:00 +02:00
parent 1eb99ae80b
commit 0048a58f03
8 changed files with 102 additions and 43 deletions

View File

@ -20,7 +20,7 @@
#include <time.h>
#include "log_event.h"
#define PROBE_HEADER_LEN (4+EVENT_LEN_OFFSET)
#define PROBE_HEADER_LEN (4+EVENT_LEN_OFFSET+4)
#define CLIENT_CAPABILITIES (CLIENT_LONG_PASSWORD | CLIENT_LONG_FLAG | CLIENT_LOCAL_FILES)
@ -102,7 +102,7 @@ static void die(const char* fmt, ...)
static void print_version()
{
printf("%s Ver 1.6 for %s at %s\n",my_progname,SYSTEM_TYPE, MACHINE_TYPE);
printf("%s Ver 1.7 for %s at %s\n",my_progname,SYSTEM_TYPE, MACHINE_TYPE);
}