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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
7e0fa9b6
Commit
7e0fa9b6
authored
Jan 02, 2002
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge work:/home/bk/mysql into hundin.mysql.fi:/my/bk/mysql
Docs/manual.texi: Auto merged
parents
c7552758
db528bfc
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
255 additions
and
125 deletions
+255
-125
Docs/manual.texi
Docs/manual.texi
+1
-3
client/client_priv.h
client/client_priv.h
+2
-1
client/mysqldump.c
client/mysqldump.c
+250
-119
include/global.h
include/global.h
+2
-2
No files found.
Docs/manual.texi
View file @
7e0fa9b6
...
@@ -46935,11 +46935,9 @@ InnoDB now supports @code{NULL} in keys.
...
@@ -46935,11 +46935,9 @@ InnoDB now supports @code{NULL} in keys.
@item
@item
Fixed shutdown problem on HPUX. (Introduced in 3.23.46)
Fixed shutdown problem on HPUX. (Introduced in 3.23.46)
@item
@item
Added 'DO expression' command.
@item
Fixed core-dump bug in replication when using SELECT RELEASE_LOCK();
Fixed core-dump bug in replication when using SELECT RELEASE_LOCK();
@item
@item
Added new
statement DO expression,[expression].
Added new
command: @code{DO expression,[expression]}
@item
@item
Added @code{slave-skip-errors} option
Added @code{slave-skip-errors} option
@item
@item
client/client_priv.h
View file @
7e0fa9b6
...
@@ -29,4 +29,5 @@ enum options { OPT_CHARSETS_DIR=256, OPT_DEFAULT_CHARSET,
...
@@ -29,4 +29,5 @@ enum options { OPT_CHARSETS_DIR=256, OPT_DEFAULT_CHARSET,
OPT_PAGER
,
OPT_NOPAGER
,
OPT_TEE
,
OPT_NOTEE
,
OPT_PAGER
,
OPT_NOPAGER
,
OPT_TEE
,
OPT_NOTEE
,
OPT_LOW_PRIORITY
,
OPT_AUTO_REPAIR
,
OPT_COMPRESS
,
OPT_LOW_PRIORITY
,
OPT_AUTO_REPAIR
,
OPT_COMPRESS
,
OPT_DROP
,
OPT_LOCKS
,
OPT_KEYWORDS
,
OPT_DELAYED
,
OPT_OPTIMIZE
,
OPT_DROP
,
OPT_LOCKS
,
OPT_KEYWORDS
,
OPT_DELAYED
,
OPT_OPTIMIZE
,
OPT_FTB
,
OPT_LTB
,
OPT_ENC
,
OPT_O_ENC
,
OPT_ESC
,
OPT_TABLES
};
OPT_FTB
,
OPT_LTB
,
OPT_ENC
,
OPT_O_ENC
,
OPT_ESC
,
OPT_TABLES
,
OPT_MASTER_DATA
,
OPT_AUTOCOMMIT
};
client/mysqldump.c
View file @
7e0fa9b6
This diff is collapsed.
Click to expand it.
include/global.h
View file @
7e0fa9b6
...
@@ -616,8 +616,8 @@ typedef unsigned long ulong; /* Short for unsigned long */
...
@@ -616,8 +616,8 @@ typedef unsigned long ulong; /* Short for unsigned long */
#endif
#endif
#ifndef longlong_defined
#ifndef longlong_defined
#if defined(HAVE_LONG_LONG) && SIZEOF_LONG != 8
#if defined(HAVE_LONG_LONG) && SIZEOF_LONG != 8
typedef
unsigned
long
long
ulonglong
;
/* ulong or unsigned long long */
typedef
unsigned
long
long
int
ulonglong
;
/* ulong or unsigned long long */
typedef
long
long
longlong
;
typedef
long
long
int
longlong
;
#else
#else
typedef
unsigned
long
ulonglong
;
/* ulong or unsigned long long */
typedef
unsigned
long
ulonglong
;
/* ulong or unsigned long long */
typedef
long
longlong
;
typedef
long
longlong
;
...
...
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