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
cb7524e1
Commit
cb7524e1
authored
Jan 14, 2005
by
msvensson@neptunus.homeip.net
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge problem
FC3 fix
parent
d52bac6a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
4 deletions
+10
-4
BitKeeper/etc/logging_ok
BitKeeper/etc/logging_ok
+1
-0
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+9
-4
No files found.
BitKeeper/etc/logging_ok
View file @
cb7524e1
...
...
@@ -141,6 +141,7 @@ mronstrom@build.mysql.com
mronstrom@mysql.com
mskold@mysql.com
msvensson@build.mysql.com
msvensson@neptunus.homeip.net
mwagner@cash.mwagner.org
mwagner@evoq.mwagner.org
mwagner@here.mwagner.org
...
...
sql/ha_ndbcluster.cc
View file @
cb7524e1
...
...
@@ -2905,9 +2905,13 @@ int ha_ndbcluster::reset()
DBUG_RETURN
(
1
);
}
static
const
char
*
ha_ndb_bas_ext
[]
=
{
ha_ndb_ext
,
NullS
};
const
char
**
ha_ndbcluster
::
bas_ext
()
const
{
static
const
char
*
ext
[]
=
{
ha_ndb_ext
,
NullS
};
return
ext
;
}
const
char
**
ha_ndbcluster
::
bas_ext
()
const
{
return
ha_ndb_bas_ext
;
}
/*
...
...
@@ -4644,8 +4648,9 @@ ha_ndbcluster::cached_table_registration(
}
{
Uint64
commit_count
;
m_ndb
->
setDatabaseName
(
m_dbname
);
if
(
ndb_get_table_statistics
(
m_ndb
,
m_tabname
,
0
,
&
commit_count
))
Ndb
*
ndb
=
get_ndb
();
ndb
->
setDatabaseName
(
m_dbname
);
if
(
ndb_get_table_statistics
(
ndb
,
m_tabname
,
0
,
&
commit_count
))
{
*
engine_data
=
0
;
DBUG_RETURN
(
FALSE
);
...
...
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