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
44c0f57d
Commit
44c0f57d
authored
Jul 01, 2005
by
heikki@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
trx0trx.h, trx0trx.ic, row0mysql.c:
Fix another bug in the fix of Bug #3300
parent
50eab8cf
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
innobase/include/trx0trx.h
innobase/include/trx0trx.h
+2
-2
innobase/include/trx0trx.ic
innobase/include/trx0trx.ic
+2
-2
innobase/row/row0mysql.c
innobase/row/row0mysql.c
+1
-1
No files found.
innobase/include/trx0trx.h
View file @
44c0f57d
...
...
@@ -29,8 +29,8 @@ trx_reset_new_rec_lock_info(
/*========================*/
trx_t
*
trx
);
/* in: transaction struct */
/*****************************************************************
Registers that we have set a new record lock on an index. We only have
space to store 2 indexes! If this is called more than twice
after
Registers that we have set a new record lock on an index. We only have
space
to store 2 indexes! If this is called to store more than 2 indexes
after
trx_reset_new_rec_lock_info(), then this function does nothing. */
UNIV_INLINE
void
...
...
innobase/include/trx0trx.ic
View file @
44c0f57d
...
...
@@ -52,8 +52,8 @@ trx_reset_new_rec_lock_info(
}
/*****************************************************************
Registers that we have set a new record lock on an index. We only have
space to store 2 indexes! If this is called more than twice
after
Registers that we have set a new record lock on an index. We only have
space
to store 2 indexes! If this is called to store more than 2 indexes
after
trx_reset_new_rec_lock_info(), then this function does nothing. */
UNIV_INLINE
void
...
...
innobase/row/row0mysql.c
View file @
44c0f57d
...
...
@@ -1517,7 +1517,7 @@ row_unlock_for_mysql(
&
mtr
);
}
rec
=
btr_pcur_get_rec
(
pcur
);
rec
=
btr_pcur_get_rec
(
clust_
pcur
);
mutex_enter
(
&
kernel_mutex
);
...
...
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