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
a4a2c720
Commit
a4a2c720
authored
Jun 13, 2007
by
joerg@trift2
Browse files
Options
Browse Files
Download
Plain Diff
Merge trift2.:/MySQL/M41/tmp-4.1
into trift2.:/MySQL/M41/push-4.1
parents
160b784a
018a5d40
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
libmysqld/lib_sql.cc
libmysqld/lib_sql.cc
+1
-1
sql/item_func.cc
sql/item_func.cc
+1
-1
No files found.
libmysqld/lib_sql.cc
View file @
a4a2c720
...
...
@@ -540,7 +540,7 @@ void *create_embedded_thd(int client_flag)
thd
->
set_time
();
thd
->
init_for_queries
();
thd
->
client_capabilities
=
client_flag
;
thd
->
real_id
=
(
pthread_t
)
th
d
;
thd
->
real_id
=
(
pthread_t
)
thd
->
thread_i
d
;
thd
->
db
=
NULL
;
thd
->
db_length
=
0
;
...
...
sql/item_func.cc
View file @
a4a2c720
...
...
@@ -2243,7 +2243,7 @@ longlong Item_func_release_lock::val_int()
else
{
#ifdef EMBEDDED_LIBRARY
if
(
ull
->
locked
&&
pthread_equal
(
current_thd
->
real_id
,
ull
->
thread
))
if
(
ull
->
locked
&&
(
current_thd
->
real_id
==
ull
->
thread
))
#else
if
(
ull
->
locked
&&
pthread_equal
(
pthread_self
(),
ull
->
thread
))
#endif
...
...
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