Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
91db5836
Commit
91db5836
authored
Aug 30, 2001
by
monty@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Portability fixes
parent
f908efb0
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
5 deletions
+9
-5
Docs/manual.texi
Docs/manual.texi
+2
-0
client/mysqlbinlog.cc
client/mysqlbinlog.cc
+2
-3
myisam/ft_test1.c
myisam/ft_test1.c
+1
-2
sql/log_event.cc
sql/log_event.cc
+4
-0
No files found.
Docs/manual.texi
View file @
91db5836
...
...
@@ -46712,6 +46712,8 @@ not yet 100% confident in this code.
@appendixsubsec Changes in release 3.23.42
@itemize @bullet
@item
Fixed problem with @code{myisampack} and @code{BLOB}.
@item
Fixes problem when one edited @code{.MRG} tables by hand.
(Patch from Benjamin Pflugmann).
@item
client/mysqlbinlog.cc
View file @
91db5836
...
...
@@ -21,9 +21,8 @@
#include <m_string.h>
#include <my_sys.h>
#include <getopt.h>
#include <my_pthread.h>
#include <thr_alarm.h>
#include <mysql.h>
#include <time.h>
#include "log_event.h"
#define CLIENT_CAPABILITIES (CLIENT_LONG_PASSWORD | CLIENT_LONG_FLAG | CLIENT_LOCAL_FILES)
...
...
@@ -113,7 +112,7 @@ static void die(const char* fmt, ...)
static
void
print_version
()
{
printf
(
"%s Ver 1.
5
for %s at %s
\n
"
,
my_progname
,
SYSTEM_TYPE
,
MACHINE_TYPE
);
printf
(
"%s Ver 1.
6
for %s at %s
\n
"
,
my_progname
,
SYSTEM_TYPE
,
MACHINE_TYPE
);
}
...
...
myisam/ft_test1.c
View file @
91db5836
...
...
@@ -30,7 +30,6 @@ static int create_flag=0,error=0;
#define MAX_REC_LENGTH 300
static
char
record
[
MAX_REC_LENGTH
],
read_record
[
MAX_REC_LENGTH
];
void
get_options
(
int
argc
,
char
*
argv
[]);
static
int
run_test
(
const
char
*
filename
);
static
void
get_options
(
int
argc
,
char
*
argv
[]);
static
void
create_record
(
char
*
,
int
);
...
...
@@ -235,7 +234,7 @@ void create_record(char *pos, int n)
/* Read options */
void
get_options
(
int
argc
,
char
*
argv
[])
static
void
get_options
(
int
argc
,
char
*
argv
[])
{
int
c
;
const
char
*
options
=
"hVvsNSKFU#:"
;
...
...
sql/log_event.cc
View file @
91db5836
...
...
@@ -277,7 +277,11 @@ void Log_event::print_timestamp(FILE* file, time_t* ts)
{
ts
=
&
when
;
}
#ifdef MYSQL_SERVER
localtime_r
(
ts
,
&
tm_tmp
);
#else
localtime
(
ts
);
#endif
fprintf
(
file
,
"%02d%02d%02d %2d:%02d:%02d"
,
tm_tmp
.
tm_year
%
100
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment