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
254c26da
Commit
254c26da
authored
Mar 28, 2002
by
sinisa@rhols221.adsl.netsonic.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Two bug fixes
parent
367dc214
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
2 deletions
+8
-2
BitKeeper/etc/logging_ok
BitKeeper/etc/logging_ok
+1
-0
Docs/manual.texi
Docs/manual.texi
+5
-0
readline/Makefile.am
readline/Makefile.am
+1
-1
sql/convert.cc
sql/convert.cc
+1
-1
No files found.
BitKeeper/etc/logging_ok
View file @
254c26da
...
...
@@ -15,3 +15,4 @@ heikki@hundin.mysql.fi
jani@hynda.mysql.fi
miguel@hegel.local
arjen@fred.bitbike.com
sinisa@rhols221.adsl.netsonic.fi
Docs/manual.texi
View file @
254c26da
...
...
@@ -46768,6 +46768,11 @@ Our TODO section contains what we plan to have in 4.0. @xref{TODO MySQL 4.0}.
@itemize @bullet
@item
Fixed @code{SIGINT} and @code{SIGQUIT} problems in mysql.cc
@item
Fixed bug in convert.cc, which is caused by having a wrong net_store_length
linked in CONVERT::store method
@item
Multi-table @code{DELETE}.
@item
Don't support old client protocols prior to MySQL 3.21 any more.
readline/Makefile.am
View file @
254c26da
...
...
@@ -26,7 +26,7 @@ noinst_HEADERS = rldefs.h histlib.h rlwinsize.h \
EXTRA_DIST
=
emacs_keymap.c vi_keymap.c
DEFS
=
-DUNDEF_THREADS_HACK
-DHAVE_CONFIG_H
DEFS
=
-DUNDEF_THREADS_HACK
-DHAVE_CONFIG_H
-DNO_KILL_INTR
# Don't update the files from bitkeeper
%
::
SCCS/s.%
sql/convert.cc
View file @
254c26da
...
...
@@ -456,7 +456,7 @@ bool CONVERT::store(String *packet,const char *from,uint length)
packet
->
realloc
(
packet_length
+
5
+
length
))
return
1
;
char
*
to
=
(
char
*
)
net_store_length
((
char
*
)
packet
->
ptr
()
+
packet_length
,
length
);
(
ulonglong
)
length
);
for
(
const
char
*
end
=
from
+
length
;
from
!=
end
;
from
++
)
*
to
++=
to_map
[(
uchar
)
*
from
];
...
...
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