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
6dba591d
Commit
6dba591d
authored
Mar 15, 2005
by
marko@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Plain Diff
After merge fixes
parents
d0603db7
dd20809e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
3 deletions
+11
-3
innobase/buf/buf0flu.c
innobase/buf/buf0flu.c
+9
-1
innobase/dict/dict0load.c
innobase/dict/dict0load.c
+1
-1
man/mysql.1.in
man/mysql.1.in
+1
-1
No files found.
innobase/buf/buf0flu.c
View file @
6dba591d
...
@@ -115,7 +115,15 @@ buf_flush_ready_for_replace(
...
@@ -115,7 +115,15 @@ buf_flush_ready_for_replace(
#ifdef UNIV_SYNC_DEBUG
#ifdef UNIV_SYNC_DEBUG
ut_ad
(
mutex_own
(
&
(
buf_pool
->
mutex
)));
ut_ad
(
mutex_own
(
&
(
buf_pool
->
mutex
)));
#endif
/* UNIV_SYNC_DEBUG */
#endif
/* UNIV_SYNC_DEBUG */
ut_a
(
block
->
state
==
BUF_BLOCK_FILE_PAGE
);
if
(
block
->
state
!=
BUF_BLOCK_FILE_PAGE
)
{
ut_print_timestamp
(
stderr
);
fprintf
(
stderr
,
" InnoDB: Error: buffer block state %lu in the LRU list!
\n
"
,
(
ulong
)
block
->
state
);
ut_print_buf
(
stderr
,
(
byte
*
)
block
,
sizeof
(
buf_block_t
));
return
(
FALSE
);
}
if
((
ut_dulint_cmp
(
block
->
oldest_modification
,
ut_dulint_zero
)
>
0
)
if
((
ut_dulint_cmp
(
block
->
oldest_modification
,
ut_dulint_zero
)
>
0
)
||
(
block
->
buf_fix_count
!=
0
)
||
(
block
->
buf_fix_count
!=
0
)
...
...
innobase/dict/dict0load.c
View file @
6dba591d
...
@@ -769,7 +769,7 @@ dict_load_table(
...
@@ -769,7 +769,7 @@ dict_load_table(
/* Check if the table name in record is the searched one */
/* Check if the table name in record is the searched one */
if
(
len
!=
ut_strlen
(
name
)
||
ut_memcmp
(
name
,
field
,
len
)
!=
0
)
{
if
(
len
!=
ut_strlen
(
name
)
||
ut_memcmp
(
name
,
field
,
len
)
!=
0
)
{
err_exit:
btr_pcur_close
(
&
pcur
);
btr_pcur_close
(
&
pcur
);
mtr_commit
(
&
mtr
);
mtr_commit
(
&
mtr
);
mem_heap_free
(
heap
);
mem_heap_free
(
heap
);
...
...
man/mysql.1.in
View file @
6dba591d
...
@@ -107,7 +107,7 @@ version number and exit.
...
@@ -107,7 +107,7 @@ version number and exit.
Wait and retry if the database server connection is down.
Wait and retry if the database server connection is down.
.SH FILES
.SH FILES
.TP 2.2i
.TP 2.2i
.I
@sysconfdir@
/my.cnf
.I
/etc
/my.cnf
MySQL configuration file
MySQL configuration file
.TP
.TP
.I @bindir@/mysql
.I @bindir@/mysql
...
...
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