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
62b78d41
Commit
62b78d41
authored
Apr 13, 2005
by
jimw@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge from 4.1
parents
6f34bc3b
01627022
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
13 deletions
+15
-13
innobase/fil/fil0fil.c
innobase/fil/fil0fil.c
+2
-1
innobase/row/row0sel.c
innobase/row/row0sel.c
+12
-12
mysql-test/t/ctype_ucs_binlog.test
mysql-test/t/ctype_ucs_binlog.test
+1
-0
No files found.
innobase/fil/fil0fil.c
View file @
62b78d41
...
...
@@ -1450,7 +1450,8 @@ fil_write_flushed_lsn_to_data_files(
cache. Note that all data files in the system tablespace 0 are
always open. */
if
(
space
->
purpose
==
FIL_TABLESPACE
)
{
if
(
space
->
purpose
==
FIL_TABLESPACE
&&
space
->
id
==
0
)
{
sum_of_sizes
=
0
;
node
=
UT_LIST_GET_FIRST
(
space
->
chain
);
...
...
innobase/row/row0sel.c
View file @
62b78d41
...
...
@@ -3493,12 +3493,12 @@ rec_loop:
err
=
sel_set_rec_lock
(
rec
,
index
,
offsets
,
prebuilt
->
select_lock_type
,
LOCK_ORDINARY
,
thr
);
}
if
(
err
!=
DB_SUCCESS
)
{
if
(
err
!=
DB_SUCCESS
)
{
goto
lock_wait_or_error
;
goto
lock_wait_or_error
;
}
}
}
/* A page supremum record cannot be in the result set: skip
it now that we have placed a possible lock on it */
...
...
@@ -3606,12 +3606,12 @@ rec_loop:
offsets
,
prebuilt
->
select_lock_type
,
LOCK_GAP
,
thr
);
}
if
(
err
!=
DB_SUCCESS
)
{
if
(
err
!=
DB_SUCCESS
)
{
goto
lock_wait_or_error
;
goto
lock_wait_or_error
;
}
}
}
btr_pcur_store_position
(
pcur
,
&
mtr
);
...
...
@@ -3640,12 +3640,12 @@ rec_loop:
offsets
,
prebuilt
->
select_lock_type
,
LOCK_GAP
,
thr
);
}
if
(
err
!=
DB_SUCCESS
)
{
if
(
err
!=
DB_SUCCESS
)
{
goto
lock_wait_or_error
;
goto
lock_wait_or_error
;
}
}
}
btr_pcur_store_position
(
pcur
,
&
mtr
);
...
...
mysql-test/t/ctype_ucs_binlog.test
View file @
62b78d41
--
source
include
/
not_embedded
.
inc
--
source
include
/
have_ucs2
.
inc
#
# Check correct binlogging of UCS2 user variables (BUG#3875)
...
...
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