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
4fe5b315
Commit
4fe5b315
authored
Sep 17, 2004
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge pnousiainen@bk-internal.mysql.com:/home/bk/mysql-4.1-ndb
into mysql.com:/space/pekka/ndb/version/my41-cc
parents
a7a6d09e
095e10b0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
10 deletions
+23
-10
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+21
-10
sql/ha_ndbcluster.h
sql/ha_ndbcluster.h
+2
-0
No files found.
sql/ha_ndbcluster.cc
View file @
4fe5b315
...
@@ -138,6 +138,16 @@ static int ndb_to_mysql_error(const NdbError *err)
...
@@ -138,6 +138,16 @@ static int ndb_to_mysql_error(const NdbError *err)
}
}
inline
int
execute_no_commit
(
ha_ndbcluster
*
h
,
NdbConnection
*
trans
)
{
int
m_batch_execute
=
0
;
if
(
false
&&
m_batch_execute
)
return
0
;
return
trans
->
execute
(
NoCommit
);
}
/*
/*
Place holder for ha_ndbcluster thread specific data
Place holder for ha_ndbcluster thread specific data
*/
*/
...
@@ -217,7 +227,8 @@ void ha_ndbcluster::no_uncommitted_rows_init(THD *thd)
...
@@ -217,7 +227,8 @@ void ha_ndbcluster::no_uncommitted_rows_init(THD *thd)
void
ha_ndbcluster
::
no_uncommitted_rows_update
(
int
c
)
void
ha_ndbcluster
::
no_uncommitted_rows_update
(
int
c
)
{
{
DBUG_ENTER
(
"ha_ndbcluster::no_uncommitted_rows_update"
);
DBUG_ENTER
(
"ha_ndbcluster::no_uncommitted_rows_update"
);
struct
Ndb_table_local_info
*
info
=
(
struct
Ndb_table_local_info
*
)
m_table_info
;
struct
Ndb_table_local_info
*
info
=
(
struct
Ndb_table_local_info
*
)
m_table_info
;
info
->
no_uncommitted_rows_count
+=
c
;
info
->
no_uncommitted_rows_count
+=
c
;
DBUG_PRINT
(
"info"
,
(
"id=%d, no_uncommitted_rows_count=%d"
,
DBUG_PRINT
(
"info"
,
(
"id=%d, no_uncommitted_rows_count=%d"
,
((
const
NDBTAB
*
)
m_table
)
->
getTableId
(),
((
const
NDBTAB
*
)
m_table
)
->
getTableId
(),
...
@@ -1023,7 +1034,7 @@ int ha_ndbcluster::complemented_pk_read(const byte *old_data, byte *new_data)
...
@@ -1023,7 +1034,7 @@ int ha_ndbcluster::complemented_pk_read(const byte *old_data, byte *new_data)
}
}
}
}
if
(
trans
->
execute
(
NoCommit
)
!=
0
)
if
(
execute_no_commit
(
this
,
trans
)
!=
0
)
{
{
table
->
status
=
STATUS_NOT_FOUND
;
table
->
status
=
STATUS_NOT_FOUND
;
DBUG_RETURN
(
ndb_err
(
trans
));
DBUG_RETURN
(
ndb_err
(
trans
));
...
@@ -1135,7 +1146,7 @@ inline int ha_ndbcluster::next_result(byte *buf)
...
@@ -1135,7 +1146,7 @@ inline int ha_ndbcluster::next_result(byte *buf)
*/
*/
if
(
ops_pending
&&
blobs_pending
)
if
(
ops_pending
&&
blobs_pending
)
{
{
if
(
trans
->
execute
(
NoCommit
)
!=
0
)
if
(
execute_no_commit
(
this
,
trans
)
!=
0
)
DBUG_RETURN
(
ndb_err
(
trans
));
DBUG_RETURN
(
ndb_err
(
trans
));
ops_pending
=
0
;
ops_pending
=
0
;
blobs_pending
=
false
;
blobs_pending
=
false
;
...
@@ -1163,7 +1174,7 @@ inline int ha_ndbcluster::next_result(byte *buf)
...
@@ -1163,7 +1174,7 @@ inline int ha_ndbcluster::next_result(byte *buf)
DBUG_PRINT
(
"info"
,
(
"ops_pending: %d"
,
ops_pending
));
DBUG_PRINT
(
"info"
,
(
"ops_pending: %d"
,
ops_pending
));
if
(
current_thd
->
transaction
.
on
)
if
(
current_thd
->
transaction
.
on
)
{
{
if
(
ops_pending
&&
(
trans
->
execute
(
NoCommit
)
!=
0
))
if
(
ops_pending
&&
(
execute_no_commit
(
this
,
trans
)
!=
0
))
DBUG_RETURN
(
ndb_err
(
trans
));
DBUG_RETURN
(
ndb_err
(
trans
));
}
}
else
else
...
@@ -1503,7 +1514,7 @@ int ha_ndbcluster::define_read_attrs(byte* buf, NdbOperation* op)
...
@@ -1503,7 +1514,7 @@ int ha_ndbcluster::define_read_attrs(byte* buf, NdbOperation* op)
ERR_RETURN
(
op
->
getNdbError
());
ERR_RETURN
(
op
->
getNdbError
());
}
}
if
(
trans
->
execute
(
NoCommit
)
!=
0
)
if
(
execute_no_commit
(
this
,
trans
)
!=
0
)
DBUG_RETURN
(
ndb_err
(
trans
));
DBUG_RETURN
(
ndb_err
(
trans
));
DBUG_PRINT
(
"exit"
,
(
"Scan started successfully"
));
DBUG_PRINT
(
"exit"
,
(
"Scan started successfully"
));
DBUG_RETURN
(
next_result
(
buf
));
DBUG_RETURN
(
next_result
(
buf
));
...
@@ -1591,7 +1602,7 @@ int ha_ndbcluster::write_row(byte *record)
...
@@ -1591,7 +1602,7 @@ int ha_ndbcluster::write_row(byte *record)
bulk_insert_not_flushed
=
false
;
bulk_insert_not_flushed
=
false
;
if
(
thd
->
transaction
.
on
)
if
(
thd
->
transaction
.
on
)
{
{
if
(
trans
->
execute
(
NoCommit
)
!=
0
)
if
(
execute_no_commit
(
this
,
trans
)
!=
0
)
{
{
skip_auto_increment
=
true
;
skip_auto_increment
=
true
;
no_uncommitted_rows_execute_failure
();
no_uncommitted_rows_execute_failure
();
...
@@ -1766,7 +1777,7 @@ int ha_ndbcluster::update_row(const byte *old_data, byte *new_data)
...
@@ -1766,7 +1777,7 @@ int ha_ndbcluster::update_row(const byte *old_data, byte *new_data)
}
}
// Execute update operation
// Execute update operation
if
(
!
cursor
&&
trans
->
execute
(
NoCommit
)
!=
0
)
{
if
(
!
cursor
&&
execute_no_commit
(
this
,
trans
)
!=
0
)
{
no_uncommitted_rows_execute_failure
();
no_uncommitted_rows_execute_failure
();
DBUG_RETURN
(
ndb_err
(
trans
));
DBUG_RETURN
(
ndb_err
(
trans
));
}
}
...
@@ -1836,7 +1847,7 @@ int ha_ndbcluster::delete_row(const byte *record)
...
@@ -1836,7 +1847,7 @@ int ha_ndbcluster::delete_row(const byte *record)
}
}
// Execute delete operation
// Execute delete operation
if
(
trans
->
execute
(
NoCommit
)
!=
0
)
{
if
(
execute_no_commit
(
this
,
trans
)
!=
0
)
{
no_uncommitted_rows_execute_failure
();
no_uncommitted_rows_execute_failure
();
DBUG_RETURN
(
ndb_err
(
trans
));
DBUG_RETURN
(
ndb_err
(
trans
));
}
}
...
@@ -2266,7 +2277,7 @@ int ha_ndbcluster::close_scan()
...
@@ -2266,7 +2277,7 @@ int ha_ndbcluster::close_scan()
deleteing/updating transaction before closing the scan
deleteing/updating transaction before closing the scan
*/
*/
DBUG_PRINT
(
"info"
,
(
"ops_pending: %d"
,
ops_pending
));
DBUG_PRINT
(
"info"
,
(
"ops_pending: %d"
,
ops_pending
));
if
(
trans
->
execute
(
NoCommit
)
!=
0
)
{
if
(
execute_no_commit
(
this
,
trans
)
!=
0
)
{
no_uncommitted_rows_execute_failure
();
no_uncommitted_rows_execute_failure
();
DBUG_RETURN
(
ndb_err
(
trans
));
DBUG_RETURN
(
ndb_err
(
trans
));
}
}
...
@@ -2573,7 +2584,7 @@ int ha_ndbcluster::end_bulk_insert()
...
@@ -2573,7 +2584,7 @@ int ha_ndbcluster::end_bulk_insert()
"rows_inserted:%d, bulk_insert_rows: %d"
,
"rows_inserted:%d, bulk_insert_rows: %d"
,
rows_inserted
,
bulk_insert_rows
));
rows_inserted
,
bulk_insert_rows
));
bulk_insert_not_flushed
=
false
;
bulk_insert_not_flushed
=
false
;
if
(
trans
->
execute
(
NoCommit
)
!=
0
)
{
if
(
execute_no_commit
(
this
,
trans
)
!=
0
)
{
no_uncommitted_rows_execute_failure
();
no_uncommitted_rows_execute_failure
();
my_errno
=
error
=
ndb_err
(
trans
);
my_errno
=
error
=
ndb_err
(
trans
);
}
}
...
...
sql/ha_ndbcluster.h
View file @
4fe5b315
...
@@ -263,6 +263,8 @@ class ha_ndbcluster: public handler
...
@@ -263,6 +263,8 @@ class ha_ndbcluster: public handler
void
no_uncommitted_rows_update
(
int
);
void
no_uncommitted_rows_update
(
int
);
void
no_uncommitted_rows_init
(
THD
*
);
void
no_uncommitted_rows_init
(
THD
*
);
void
no_uncommitted_rows_reset
(
THD
*
);
void
no_uncommitted_rows_reset
(
THD
*
);
friend
int
execute_no_commit
(
ha_ndbcluster
*
,
NdbConnection
*
);
};
};
bool
ndbcluster_init
(
void
);
bool
ndbcluster_init
(
void
);
...
...
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