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
e16f03cd
Commit
e16f03cd
authored
Oct 25, 2007
by
knielsen@loke.(none)[knielsen]
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BUG#31810: Potential infinite loop with autoincrement failures in ndb
Fix extra semicolon causing if-statement to be disabled.
parent
59616668
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+2
-2
No files found.
sql/ha_ndbcluster.cc
View file @
e16f03cd
...
...
@@ -2302,7 +2302,7 @@ int ha_ndbcluster::write_row(byte *record)
auto_value
,
1
)
==
-
1
)
{
if
(
--
retries
&&
ndb
->
getNdbError
().
status
==
NdbError
::
TemporaryError
)
;
ndb
->
getNdbError
().
status
==
NdbError
::
TemporaryError
)
{
my_sleep
(
retry_sleep
);
continue
;
...
...
@@ -4862,7 +4862,7 @@ ulonglong ha_ndbcluster::get_auto_increment()
auto_value
,
cache_size
,
step
,
start
))
{
if
(
--
retries
&&
ndb
->
getNdbError
().
status
==
NdbError
::
TemporaryError
)
;
ndb
->
getNdbError
().
status
==
NdbError
::
TemporaryError
)
{
my_sleep
(
retry_sleep
);
continue
;
...
...
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