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
7a02c71f
Commit
7a02c71f
authored
May 11, 2007
by
tomas@whalegate.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug#25818 No return of NDB share object in failures in open method
- make sure resources are release properly on error
parent
ee6a1bc5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
9 deletions
+18
-9
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+18
-9
No files found.
sql/ha_ndbcluster.cc
View file @
7a02c71f
...
...
@@ -5011,27 +5011,36 @@ int ha_ndbcluster::open(const char *name, int mode, uint test_if_locked)
set_dbname
(
name
);
set_tabname
(
name
);
if
(
check_ndb_connection
())
{
free_share
(
m_share
);
m_share
=
0
;
DBUG_RETURN
(
HA_ERR_NO_CONNECTION
);
if
((
res
=
check_ndb_connection
())
||
(
res
=
get_metadata
(
name
)))
{
free_share
(
m_share
);
m_share
=
0
;
DBUG_RETURN
(
res
);
}
res
=
get_metadata
(
name
);
if
(
!
res
)
while
(
1
)
{
Ndb
*
ndb
=
get_ndb
();
if
(
ndb
->
setDatabaseName
(
m_dbname
))
{
ERR_RETURN
(
ndb
->
getNdbError
());
res
=
ndb_to_mysql_error
(
&
ndb
->
getNdbError
());
break
;
}
struct
Ndb_statistics
stat
;
res
=
ndb_get_table_statistics
(
NULL
,
false
,
ndb
,
m_tabname
,
&
stat
);
records
=
stat
.
row_count
;
if
(
!
res
)
res
=
info
(
HA_STATUS_CONST
);
break
;
}
DBUG_RETURN
(
res
);
if
(
res
)
{
free_share
(
m_share
);
m_share
=
0
;
release_metadata
();
DBUG_RETURN
(
res
);
}
DBUG_RETURN
(
0
);
}
...
...
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