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
6f5188d7
Commit
6f5188d7
authored
Mar 16, 2001
by
monty@donna.mysql.fi
Browse files
Options
Browse Files
Download
Plain Diff
Merge work:/my/mysql into donna.mysql.fi:/home/my/bk/mysql
parents
a7998f82
a1e6710b
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
11 deletions
+21
-11
BitKeeper/etc/logging_ok
BitKeeper/etc/logging_ok
+1
-10
Docs/manual.texi
Docs/manual.texi
+4
-0
innobase/buf/buf0buf.c
innobase/buf/buf0buf.c
+13
-0
innobase/buf/buf0lru.c
innobase/buf/buf0lru.c
+3
-1
No files found.
BitKeeper/etc/logging_ok
View file @
6f5188d7
jani@hynda.mysql.fi
heikki@donna.mysql.fi
heikki@donna.mysql.fi
jcole@abel.spaceapes.com
jcole@tetra.spaceapes.com
monty@donna.mysql.fi
monty@donna.mysql.fi
monty@tik.mysql.fi
mwagner@evoq.mwagner.org
paul@central.snake.net
sasha@mysql.sashanet.com
sasha@work.mysql.com
serg@serg.mysql.com
tim@threads.polyesthetic.msg
tim@work.mysql.com
Docs/manual.texi
View file @
6f5188d7
...
@@ -26463,6 +26463,10 @@ option to @code{configure}, and the character set configuration files
...
@@ -26463,6 +26463,10 @@ option to @code{configure}, and the character set configuration files
listed in @file{SHAREDIR/charsets/Index}.
listed in @file{SHAREDIR/charsets/Index}.
@xref{Quick install}.
@xref{Quick install}.
If you change the character set when running MySQL (which may also
change the sort order), you must run myisamchk -r -q on all
tables. Otherwise your indexes may not be ordered correctly.
When a client connects to a @strong{MySQL} server, the server sends the
When a client connects to a @strong{MySQL} server, the server sends the
default character set in use to the client. The client will switch to
default character set in use to the client. The client will switch to
use this character set for this connection.
use this character set for this connection.
innobase/buf/buf0buf.c
View file @
6f5188d7
...
@@ -863,6 +863,19 @@ buf_page_get_known_nowait(
...
@@ -863,6 +863,19 @@ buf_page_get_known_nowait(
mutex_enter
(
&
(
buf_pool
->
mutex
));
mutex_enter
(
&
(
buf_pool
->
mutex
));
if
(
block
->
state
==
BUF_BLOCK_REMOVE_HASH
)
{
/* Another thread is just freeing the block from the LRU list
of the buffer pool: do not try to access this page; this
attempt to access the page can only come through the hash
index because when the buffer block state is ..._REMOVE_HASH,
we have already removed it from the page address hash table
of the buffer pool. */
mutex_exit
(
&
(
buf_pool
->
mutex
));
return
(
FALSE
);
}
#ifdef UNIV_SYNC_DEBUG
#ifdef UNIV_SYNC_DEBUG
buf_block_buf_fix_inc_debug
(
block
,
file
,
line
);
buf_block_buf_fix_inc_debug
(
block
,
file
,
line
);
#else
#else
...
...
innobase/buf/buf0lru.c
View file @
6f5188d7
...
@@ -138,6 +138,8 @@ buf_LRU_search_and_free_block(
...
@@ -138,6 +138,8 @@ buf_LRU_search_and_free_block(
mutex_enter
(
&
(
buf_pool
->
mutex
));
mutex_enter
(
&
(
buf_pool
->
mutex
));
ut_a
(
block
->
buf_fix_count
==
0
);
buf_LRU_block_free_hashed_page
(
block
);
buf_LRU_block_free_hashed_page
(
block
);
freed
=
TRUE
;
freed
=
TRUE
;
...
...
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