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
fff1caa0
Commit
fff1caa0
authored
Jan 13, 2006
by
tomas@poseidon.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
enabled test
added missing debug_return
parent
931ec480
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
6 deletions
+4
-6
mysql-test/t/disabled.def
mysql-test/t/disabled.def
+0
-2
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+4
-4
No files found.
mysql-test/t/disabled.def
View file @
fff1caa0
...
...
@@ -21,8 +21,6 @@ type_time : Bug#15805
ps_7ndb : dbug assert in RBR mode when executing test suite
rpl_ddl : Bug#15963 SBR does not show "Definer" correctly
events : Affects flush test case. A table lock not released somewhere
ndb_autodiscover : TBF with CR
ndb_autodiscover2 : TBF with CR
ndb_binlog_basic : Results are not deterministic, Tomas will fix
rpl_ndb_basic : Bug#16228
rpl_sp : Bug #16456
sql/ha_ndbcluster.cc
View file @
fff1caa0
...
...
@@ -6199,7 +6199,7 @@ NDB_SHARE *ndbcluster_get_share(const char *key, TABLE *table,
DBUG_PRINT
(
"error"
,
(
"get_share: %s does not exist"
,
key
));
if
(
!
have_lock
)
pthread_mutex_unlock
(
&
ndbcluster_mutex
);
return
0
;
DBUG_RETURN
(
0
)
;
}
if
((
share
=
(
NDB_SHARE
*
)
my_malloc
(
sizeof
(
*
share
),
MYF
(
MY_WME
|
MY_ZEROFILL
))))
...
...
@@ -6221,7 +6221,7 @@ NDB_SHARE *ndbcluster_get_share(const char *key, TABLE *table,
*
root_ptr
=
old_root
;
if
(
!
have_lock
)
pthread_mutex_unlock
(
&
ndbcluster_mutex
);
return
0
;
DBUG_RETURN
(
0
)
;
}
thr_lock_init
(
&
share
->
lock
);
pthread_mutex_init
(
&
share
->
mutex
,
MY_MUTEX_INIT_FAST
);
...
...
@@ -6242,7 +6242,7 @@ NDB_SHARE *ndbcluster_get_share(const char *key, TABLE *table,
if
(
!
have_lock
)
pthread_mutex_unlock
(
&
ndbcluster_mutex
);
my_error
(
ER_OUTOFMEMORY
,
MYF
(
0
),
sizeof
(
*
share
));
return
0
;
DBUG_RETURN
(
0
)
;
}
}
share
->
use_count
++
;
...
...
@@ -6258,7 +6258,7 @@ NDB_SHARE *ndbcluster_get_share(const char *key, TABLE *table,
share
->
use_count
,
share
->
commit_count
));
if
(
!
have_lock
)
pthread_mutex_unlock
(
&
ndbcluster_mutex
);
return
share
;
DBUG_RETURN
(
share
)
;
}
void
ndbcluster_real_free_share
(
NDB_SHARE
**
share
)
...
...
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