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
76027034
Commit
76027034
authored
Sep 24, 2004
by
tomas@poseidon.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug, releaseTableObject called twice
bug, whole bucket removed if delete first element in bucket
parent
4b2aa105
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
9 deletions
+4
-9
ndb/src/kernel/blocks/dbdict/Dbdict.cpp
ndb/src/kernel/blocks/dbdict/Dbdict.cpp
+0
-2
ndb/src/ndbapi/NdbLinHash.hpp
ndb/src/ndbapi/NdbLinHash.hpp
+4
-7
No files found.
ndb/src/kernel/blocks/dbdict/Dbdict.cpp
View file @
76027034
...
@@ -2868,7 +2868,6 @@ Dbdict::execALTER_TABLE_REQ(Signal* signal)
...
@@ -2868,7 +2868,6 @@ Dbdict::execALTER_TABLE_REQ(Signal* signal)
jam
();
jam
();
c_opCreateTable
.
release
(
alterTabPtr
);
c_opCreateTable
.
release
(
alterTabPtr
);
parseRecord
.
tablePtr
.
p
->
tabState
=
TableRecord
::
NOT_DEFINED
;
parseRecord
.
tablePtr
.
p
->
tabState
=
TableRecord
::
NOT_DEFINED
;
releaseTableObject
(
parseRecord
.
tablePtr
.
i
,
false
);
alterTableRef
(
signal
,
req
,
alterTableRef
(
signal
,
req
,
(
AlterTableRef
::
ErrorCode
)
parseRecord
.
errorCode
,
(
AlterTableRef
::
ErrorCode
)
parseRecord
.
errorCode
,
aParseRecord
);
aParseRecord
);
...
@@ -3054,7 +3053,6 @@ Dbdict::execALTER_TAB_REQ(Signal * signal)
...
@@ -3054,7 +3053,6 @@ Dbdict::execALTER_TAB_REQ(Signal * signal)
jam
();
jam
();
c_opCreateTable
.
release
(
alterTabPtr
);
c_opCreateTable
.
release
(
alterTabPtr
);
parseRecord
.
tablePtr
.
p
->
tabState
=
TableRecord
::
NOT_DEFINED
;
parseRecord
.
tablePtr
.
p
->
tabState
=
TableRecord
::
NOT_DEFINED
;
releaseTableObject
(
parseRecord
.
tablePtr
.
i
,
false
);
alterTabRef
(
signal
,
req
,
alterTabRef
(
signal
,
req
,
(
AlterTableRef
::
ErrorCode
)
parseRecord
.
errorCode
,
(
AlterTableRef
::
ErrorCode
)
parseRecord
.
errorCode
,
aParseRecord
);
aParseRecord
);
...
...
ndb/src/ndbapi/NdbLinHash.hpp
View file @
76027034
...
@@ -287,17 +287,14 @@ NdbLinHash<C>::deleteKey ( const char* str, Uint32 len){
...
@@ -287,17 +287,14 @@ NdbLinHash<C>::deleteKey ( const char* str, Uint32 len){
NdbElement_t
<
C
>
**
chainp
=
&
directory
[
dir
]
->
elements
[
seg
];
NdbElement_t
<
C
>
**
chainp
=
&
directory
[
dir
]
->
elements
[
seg
];
for
(
NdbElement_t
<
C
>
*
chain
=
*
chainp
;
chain
!=
0
;
chain
=
chain
->
next
){
for
(
NdbElement_t
<
C
>
*
chain
=
*
chainp
;
chain
!=
0
;
chain
=
chain
->
next
){
if
(
chain
->
len
==
len
&&
!
memcmp
(
chain
->
str
,
str
,
len
)){
if
(
chain
->
len
==
len
&&
!
memcmp
(
chain
->
str
,
str
,
len
)){
C
*
data
=
chain
->
theData
;
if
(
oldChain
==
0
)
{
if
(
oldChain
==
0
)
{
C
*
data
=
chain
->
theData
;
*
chainp
=
chain
->
next
;
delete
chain
;
*
chainp
=
0
;
return
data
;
}
else
{
}
else
{
C
*
data
=
chain
->
theData
;
oldChain
->
next
=
chain
->
next
;
oldChain
->
next
=
chain
->
next
;
delete
chain
;
return
data
;
}
}
delete
chain
;
return
data
;
}
else
{
}
else
{
oldChain
=
chain
;
oldChain
=
chain
;
}
}
...
...
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