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
db350aa1
Commit
db350aa1
authored
May 14, 2007
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge mronstrom@bk-internal.mysql.com:/home/bk/mysql-5.1-new-ndb
into dator3.(none):/home/mikael/mysql_clones/rt-5.1
parents
1984babb
48a3175c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
9 deletions
+15
-9
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+15
-9
No files found.
sql/ha_ndbcluster.cc
View file @
db350aa1
...
...
@@ -6263,23 +6263,23 @@ int ha_ndbcluster::open(const char *name, int mode, uint test_if_locked)
set_dbname
(
name
);
set_tabname
(
name
);
if
(
check_ndb_connection
())
if
((
res
=
check_ndb_connection
())
||
(
res
=
get_metadata
(
name
)))
{
/* ndb_share reference handler free */
DBUG_PRINT
(
"NDB_SHARE"
,
(
"%s handler free use_count: %u"
,
m_share
->
key
,
m_share
->
use_count
));
free_share
(
&
m_share
);
m_share
=
0
;
DBUG_RETURN
(
HA_ERR_NO_CONNECTION
);
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_table
,
&
stat
);
...
...
@@ -6288,14 +6288,20 @@ int ha_ndbcluster::open(const char *name, int mode, uint test_if_locked)
stats
.
records
=
stat
.
row_count
;
if
(
!
res
)
res
=
info
(
HA_STATUS_CONST
);
break
;
}
if
(
res
)
{
free_share
(
&
m_share
);
m_share
=
0
;
release_metadata
(
current_thd
,
get_ndb
());
DBUG_RETURN
(
res
);
}
#ifdef HAVE_NDB_BINLOG
if
(
!
ndb_binlog_tables_inited
&&
ndb_binlog_running
)
table
->
db_stat
|=
HA_READ_ONLY
;
#endif
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