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
6f318d16
Commit
6f318d16
authored
Jun 29, 2006
by
tomas@poseidon.ndb.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge poseidon.ndb.mysql.com:/home/tomas/mysql-4.1-main
into poseidon.ndb.mysql.com:/home/tomas/mysql-5.0
parents
0822e246
87460ec7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
53 additions
and
44 deletions
+53
-44
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+53
-44
No files found.
sql/ha_ndbcluster.cc
View file @
6f318d16
...
@@ -363,6 +363,7 @@ void ha_ndbcluster::records_update()
...
@@ -363,6 +363,7 @@ void ha_ndbcluster::records_update()
{
{
Ndb
*
ndb
=
get_ndb
();
Ndb
*
ndb
=
get_ndb
();
struct
Ndb_statistics
stat
;
struct
Ndb_statistics
stat
;
ndb
->
setDatabaseName
(
m_dbname
);
if
(
ndb_get_table_statistics
(
ndb
,
m_tabname
,
&
stat
)
==
0
){
if
(
ndb_get_table_statistics
(
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
;
...
@@ -3076,6 +3077,7 @@ void ha_ndbcluster::info(uint flag)
...
@@ -3076,6 +3077,7 @@ void ha_ndbcluster::info(uint flag)
DBUG_VOID_RETURN
;
DBUG_VOID_RETURN
;
Ndb
*
ndb
=
get_ndb
();
Ndb
*
ndb
=
get_ndb
();
struct
Ndb_statistics
stat
;
struct
Ndb_statistics
stat
;
ndb
->
setDatabaseName
(
m_dbname
);
if
(
current_thd
->
variables
.
ndb_use_exact_count
&&
if
(
current_thd
->
variables
.
ndb_use_exact_count
&&
ndb_get_table_statistics
(
ndb
,
m_tabname
,
&
stat
)
==
0
)
ndb_get_table_statistics
(
ndb
,
m_tabname
,
&
stat
)
==
0
)
{
{
...
@@ -5836,62 +5838,57 @@ ndb_get_table_statistics(Ndb* ndb, const char * table,
...
@@ -5836,62 +5838,57 @@ ndb_get_table_statistics(Ndb* ndb, const char * table,
DBUG_ENTER
(
"ndb_get_table_statistics"
);
DBUG_ENTER
(
"ndb_get_table_statistics"
);
DBUG_PRINT
(
"enter"
,
(
"table: %s"
,
table
));
DBUG_PRINT
(
"enter"
,
(
"table: %s"
,
table
));
NdbTransaction
*
pTrans
;
NdbTransaction
*
pTrans
;
NdbError
error
;
int
retries
=
10
;
int
retries
=
10
;
int
retry_sleep
=
30
*
1000
;
/* 30 milliseconds */
int
retry_sleep
=
30
*
1000
;
/* 30 milliseconds */
do
do
{
{
pTrans
=
ndb
->
startTransaction
();
Uint64
rows
,
commits
,
mem
;
if
(
pTrans
==
NULL
)
Uint32
size
;
{
Uint64
sum_rows
=
0
;
if
(
ndb
->
getNdbError
().
status
==
NdbError
::
TemporaryError
&&
Uint64
sum_commits
=
0
;
retries
--
)
NdbScanOperation
*
pOp
;
NdbResultSet
*
rs
;
int
check
;
if
((
pTrans
=
ndb
->
startTransaction
())
==
NULL
)
{
{
my_sleep
(
retry_sleep
);
error
=
ndb
->
getNdbError
();
continue
;
goto
retry
;
}
break
;
}
}
NdbScanOperation
*
pOp
=
pTrans
->
getNdbScanOperation
(
table
);
if
((
pOp
=
pTrans
->
getNdbScanOperation
(
table
))
==
NULL
)
if
(
pOp
==
NULL
)
{
break
;
error
=
pTrans
->
getNdbError
();
goto
retry
;
}
if
(
pOp
->
readTuples
(
NdbOperation
::
LM_CommittedRead
))
if
(
pOp
->
readTuples
(
NdbOperation
::
LM_CommittedRead
))
break
;
{
error
=
pOp
->
getNdbError
();
goto
retry
;
}
int
check
=
pOp
->
interpret_exit_last_row
();
if
(
pOp
->
interpret_exit_last_row
()
==
-
1
)
if
(
check
==
-
1
)
{
break
;
error
=
pOp
->
getNdbError
();
goto
retry
;
}
Uint64
rows
,
commits
,
mem
;
Uint32
size
;
pOp
->
getValue
(
NdbDictionary
::
Column
::
ROW_COUNT
,
(
char
*
)
&
rows
);
pOp
->
getValue
(
NdbDictionary
::
Column
::
ROW_COUNT
,
(
char
*
)
&
rows
);
pOp
->
getValue
(
NdbDictionary
::
Column
::
COMMIT_COUNT
,
(
char
*
)
&
commits
);
pOp
->
getValue
(
NdbDictionary
::
Column
::
COMMIT_COUNT
,
(
char
*
)
&
commits
);
pOp
->
getValue
(
NdbDictionary
::
Column
::
ROW_SIZE
,
(
char
*
)
&
size
);
pOp
->
getValue
(
NdbDictionary
::
Column
::
ROW_SIZE
,
(
char
*
)
&
size
);
pOp
->
getValue
(
NdbDictionary
::
Column
::
FRAGMENT_MEMORY
,
(
char
*
)
&
mem
);
pOp
->
getValue
(
NdbDictionary
::
Column
::
FRAGMENT_MEMORY
,
(
char
*
)
&
mem
);
check
=
pTrans
->
execute
(
NdbTransaction
::
NoCommit
,
if
(
pTrans
->
execute
(
NdbTransaction
::
NoCommit
,
NdbTransaction
::
AbortOnError
,
NdbTransaction
::
AbortOnError
,
TRUE
);
TRUE
)
==
-
1
)
if
(
check
==
-
1
)
{
if
(
pTrans
->
getNdbError
().
status
==
NdbError
::
TemporaryError
&&
retries
--
)
{
{
ndb
->
closeTransaction
(
pTrans
);
error
=
pTrans
->
getNdbError
();
pTrans
=
0
;
goto
retry
;
my_sleep
(
retry_sleep
);
continue
;
}
break
;
}
}
Uint32
count
=
0
;
Uint64
sum_rows
=
0
;
Uint64
sum_commits
=
0
;
Uint64
sum_row_size
=
0
;
Uint64
sum_mem
=
0
;
while
((
check
=
pOp
->
nextResult
(
TRUE
,
TRUE
))
==
0
)
while
((
check
=
pOp
->
nextResult
(
TRUE
,
TRUE
))
==
0
)
{
{
sum_rows
+=
rows
;
sum_rows
+=
rows
;
...
@@ -5903,7 +5900,10 @@ ndb_get_table_statistics(Ndb* ndb, const char * table,
...
@@ -5903,7 +5900,10 @@ ndb_get_table_statistics(Ndb* ndb, const char * table,
}
}
if
(
check
==
-
1
)
if
(
check
==
-
1
)
break
;
{
error
=
pOp
->
getNdbError
();
goto
retry
;
}
pOp
->
close
(
TRUE
);
pOp
->
close
(
TRUE
);
...
@@ -5920,12 +5920,21 @@ ndb_get_table_statistics(Ndb* ndb, const char * table,
...
@@ -5920,12 +5920,21 @@ ndb_get_table_statistics(Ndb* ndb, const char * table,
sum_mem
,
count
));
sum_mem
,
count
));
DBUG_RETURN
(
0
);
DBUG_RETURN
(
0
);
}
while
(
1
);
retry:
if
(
pTrans
)
if
(
pTrans
)
{
ndb
->
closeTransaction
(
pTrans
);
ndb
->
closeTransaction
(
pTrans
);
DBUG_PRINT
(
"exit"
,
(
"failed"
));
pTrans
=
NULL
;
DBUG_RETURN
(
-
1
);
}
if
(
error
.
status
==
NdbError
::
TemporaryError
&&
retries
--
)
{
my_sleep
(
retry_sleep
);
continue
;
}
break
;
}
while
(
1
);
DBUG_PRINT
(
"exit"
,
(
"failed, error %u(%s)"
,
error
.
code
,
error
.
message
));
ERR_RETURN
(
error
);
}
}
/*
/*
...
...
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