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
c56a907b
Commit
c56a907b
authored
Oct 24, 2006
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
post merge fix
parent
399cd9f7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
7 deletions
+11
-7
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+11
-7
No files found.
sql/ha_ndbcluster.cc
View file @
c56a907b
...
@@ -372,7 +372,9 @@ int ha_ndbcluster::records_update()
...
@@ -372,7 +372,9 @@ int ha_ndbcluster::records_update()
Ndb
*
ndb
=
get_ndb
();
Ndb
*
ndb
=
get_ndb
();
struct
Ndb_statistics
stat
;
struct
Ndb_statistics
stat
;
ndb
->
setDatabaseName
(
m_dbname
);
ndb
->
setDatabaseName
(
m_dbname
);
if
((
result
=
ndb_get_table_statistics
(
ndb
,
true
,
m_tabname
,
&
stat
))
==
0
){
result
=
ndb_get_table_statistics
(
this
,
true
,
ndb
,
m_tabname
,
&
stat
);
if
(
result
==
0
)
{
mean_rec_length
=
stat
.
row_size
;
mean_rec_length
=
stat
.
row_size
;
data_file_length
=
stat
.
fragment_memory
;
data_file_length
=
stat
.
fragment_memory
;
info
->
records
=
stat
.
row_count
;
info
->
records
=
stat
.
row_count
;
...
@@ -3119,7 +3121,8 @@ int ha_ndbcluster::info(uint flag)
...
@@ -3119,7 +3121,8 @@ int ha_ndbcluster::info(uint flag)
struct
Ndb_statistics
stat
;
struct
Ndb_statistics
stat
;
ndb
->
setDatabaseName
(
m_dbname
);
ndb
->
setDatabaseName
(
m_dbname
);
if
(
current_thd
->
variables
.
ndb_use_exact_count
&&
if
(
current_thd
->
variables
.
ndb_use_exact_count
&&
(
result
=
ndb_get_table_statistics
(
ndb
,
true
,
m_tabname
,
&
stat
))
==
0
)
(
result
=
ndb_get_table_statistics
(
this
,
true
,
ndb
,
m_tabname
,
&
stat
))
==
0
)
{
{
mean_rec_length
=
stat
.
row_size
;
mean_rec_length
=
stat
.
row_size
;
data_file_length
=
stat
.
fragment_memory
;
data_file_length
=
stat
.
fragment_memory
;
...
@@ -4760,9 +4763,9 @@ int ha_ndbcluster::open(const char *name, int mode, uint test_if_locked)
...
@@ -4760,9 +4763,9 @@ int ha_ndbcluster::open(const char *name, int mode, uint test_if_locked)
{
{
Ndb
*
ndb
=
get_ndb
();
Ndb
*
ndb
=
get_ndb
();
ndb
->
setDatabaseName
(
m_dbname
);
ndb
->
setDatabaseName
(
m_dbname
);
Uint64
rows
=
0
;
struct
Ndb_statistics
stat
;
res
=
ndb_get_table_statistics
(
NULL
,
false
,
ndb
,
m_tabname
,
&
rows
,
0
);
res
=
ndb_get_table_statistics
(
NULL
,
false
,
ndb
,
m_tabname
,
&
stat
);
records
=
rows
;
records
=
stat
.
row_count
;
if
(
!
res
)
if
(
!
res
)
res
=
info
(
HA_STATUS_CONST
);
res
=
info
(
HA_STATUS_CONST
);
}
}
...
@@ -5578,7 +5581,7 @@ uint ndb_get_commitcount(THD *thd, char *dbname, char *tabname,
...
@@ -5578,7 +5581,7 @@ uint ndb_get_commitcount(THD *thd, char *dbname, char *tabname,
pthread_mutex_unlock
(
&
share
->
mutex
);
pthread_mutex_unlock
(
&
share
->
mutex
);
struct
Ndb_statistics
stat
;
struct
Ndb_statistics
stat
;
if
(
ndb_get_table_statistics
(
ndb
,
tabname
,
&
stat
))
if
(
ndb_get_table_statistics
(
NULL
,
true
,
ndb
,
tabname
,
&
stat
))
{
{
free_share
(
share
);
free_share
(
share
);
DBUG_RETURN
(
1
);
DBUG_RETURN
(
1
);
...
@@ -5909,6 +5912,7 @@ static int unpackfrm(const void **unpack_data, uint *unpack_len,
...
@@ -5909,6 +5912,7 @@ static int unpackfrm(const void **unpack_data, uint *unpack_len,
static
static
int
int
ndb_get_table_statistics
(
ha_ndbcluster
*
file
,
bool
report_error
,
Ndb
*
ndb
,
ndb_get_table_statistics
(
ha_ndbcluster
*
file
,
bool
report_error
,
Ndb
*
ndb
,
const
char
*
table
,
struct
Ndb_statistics
*
ndbstat
)
struct
Ndb_statistics
*
ndbstat
)
{
{
NdbTransaction
*
pTrans
;
NdbTransaction
*
pTrans
;
...
@@ -6573,7 +6577,7 @@ pthread_handler_t ndb_util_thread_func(void *arg __attribute__((unused)))
...
@@ -6573,7 +6577,7 @@ pthread_handler_t ndb_util_thread_func(void *arg __attribute__((unused)))
lock
=
share
->
commit_count_lock
;
lock
=
share
->
commit_count_lock
;
pthread_mutex_unlock
(
&
share
->
mutex
);
pthread_mutex_unlock
(
&
share
->
mutex
);
if
(
ndb_get_table_statistics
(
ndb
,
tabname
,
&
stat
)
==
0
)
if
(
ndb_get_table_statistics
(
NULL
,
false
,
ndb
,
tabname
,
&
stat
)
==
0
)
{
{
char
buff
[
22
],
buff2
[
22
];
char
buff
[
22
],
buff2
[
22
];
DBUG_PRINT
(
"ndb_util_thread"
,
DBUG_PRINT
(
"ndb_util_thread"
,
...
...
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