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
9b42b0a7
Commit
9b42b0a7
authored
Jun 29, 2002
by
monty@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Plain Diff
Merge work:/home/bk/mysql into hundin.mysql.fi:/my/bk/mysql
parents
967b5bff
36152722
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
5 deletions
+8
-5
Docs/manual.texi
Docs/manual.texi
+2
-0
isam/pack_isam.c
isam/pack_isam.c
+4
-3
myisam/mi_cache.c
myisam/mi_cache.c
+2
-2
No files found.
Docs/manual.texi
View file @
9b42b0a7
...
...
@@ -46927,6 +46927,8 @@ not yet 100% confident in this code.
@node News-3.23.52, News-3.23.51, News-3.23.x, News-3.23.x
@appendixsubsec Changes in release 3.23.52
@itemize @bullet
@code
Fixed a bug in range optimiser (causing crashes).
@item
Fixed possible problem in replication when doing @code{DROP DATABASE} on a
database with InnoDB tables.
isam/pack_isam.c
View file @
9b42b0a7
...
...
@@ -265,9 +265,10 @@ static void print_version(void)
static
void
usage
(
void
)
{
print_version
();
puts
(
"Copyright (C) 1994-2000 TcX AB & Monty Program KB & Detron HB."
);
puts
(
"This is not free software. You must have a licence to use this program"
);
puts
(
"This software comes with ABSOLUTELY NO WARRANTY
\n
"
);
puts
(
"Copyright (C) 2002 MySQL AB"
);
puts
(
"This software comes with ABSOLUTELY NO WARRANTY. This is free software,"
);
puts
(
"and you are welcome to modify and redistribute it under the GPL license
\n
"
);
puts
(
"Pack a ISAM-table to take much smaller space"
);
puts
(
"Keys are not updated, so you must run isamchk -rq on any table"
);
puts
(
"that has keys after you have compressed it"
);
...
...
myisam/mi_cache.c
View file @
9b42b0a7
...
...
@@ -59,8 +59,8 @@ int _mi_read_cache(IO_CACHE *info, byte *buff, my_off_t pos, uint length,
in_buff_length
=
0
;
if
(
flag
&
READING_NEXT
)
{
if
(
pos
!=
(
(
info
)
->
pos_in_file
+
(
uint
)
(
(
info
)
->
rc_end
-
(
info
)
->
rc_request_pos
)))
if
(
pos
!=
(
info
->
pos_in_file
+
(
uint
)
(
info
->
rc_end
-
info
->
rc_request_pos
)))
{
info
->
pos_in_file
=
pos
;
/* Force start here */
info
->
rc_pos
=
info
->
rc_end
=
info
->
rc_request_pos
;
/* Everything used */
...
...
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