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
9edd7b37
Commit
9edd7b37
authored
Jun 20, 2006
by
stewart@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/stewart/Documents/MySQL/5.0/bugsmerge
into mysql.com:/home/stewart/Documents/MySQL/5.1/main
parents
0d7ea0ac
9e05d61a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
6 deletions
+14
-6
storage/ndb/include/util/ConfigValues.hpp
storage/ndb/include/util/ConfigValues.hpp
+1
-0
storage/ndb/src/common/util/ConfigValues.cpp
storage/ndb/src/common/util/ConfigValues.cpp
+7
-1
storage/ndb/src/mgmapi/mgmapi.cpp
storage/ndb/src/mgmapi/mgmapi.cpp
+1
-1
storage/ndb/src/mgmsrv/ConfigInfo.cpp
storage/ndb/src/mgmsrv/ConfigInfo.cpp
+5
-4
No files found.
storage/ndb/include/util/ConfigValues.hpp
View file @
9edd7b37
...
...
@@ -96,6 +96,7 @@ public:
public:
ConfigValuesFactory
(
Uint32
keys
=
50
,
Uint32
data
=
10
);
// Initial
ConfigValuesFactory
(
ConfigValues
*
m_cfg
);
//
~
ConfigValuesFactory
();
ConfigValues
*
m_cfg
;
ConfigValues
*
getConfigValues
();
...
...
storage/ndb/src/common/util/ConfigValues.cpp
View file @
9edd7b37
...
...
@@ -294,6 +294,12 @@ ConfigValuesFactory::ConfigValuesFactory(ConfigValues * cfg){
}
}
ConfigValuesFactory
::~
ConfigValuesFactory
()
{
if
(
m_cfg
)
free
(
m_cfg
);
}
ConfigValues
*
ConfigValuesFactory
::
create
(
Uint32
keys
,
Uint32
data
){
Uint32
sz
=
sizeof
(
ConfigValues
);
...
...
@@ -528,7 +534,7 @@ ConfigValuesFactory::extractCurrentSection(const ConfigValues::ConstIterator & c
}
}
ConfigValues
*
ret
=
fac
->
m_cfg
;
ConfigValues
*
ret
=
fac
->
getConfigValues
()
;
delete
fac
;
return
ret
;
}
...
...
storage/ndb/src/mgmapi/mgmapi.cpp
View file @
9edd7b37
...
...
@@ -1924,7 +1924,7 @@ ndb_mgm_get_configuration(NdbMgmHandle handle, unsigned int version) {
}
delete
prop
;
return
(
ndb_mgm_configuration
*
)
cvf
.
m_cfg
;
return
(
ndb_mgm_configuration
*
)
cvf
.
getConfigValues
()
;
}
while
(
0
);
delete
prop
;
...
...
storage/ndb/src/mgmsrv/ConfigInfo.cpp
View file @
9edd7b37
...
...
@@ -2289,11 +2289,11 @@ ConfigInfo::ConfigInfo()
if
(
!
m_info
.
getCopy
(
param
.
_section
,
&
section
))
{
Properties
newsection
(
true
);
m_info
.
put
(
param
.
_section
,
&
newsection
);
// Get copy of section
m_info
.
getCopy
(
param
.
_section
,
&
section
);
}
// Get copy of section
m_info
.
getCopy
(
param
.
_section
,
&
section
);
// Create pinfo (parameter info) entry
Properties
pinfo
(
true
);
pinfo
.
put
(
"Id"
,
param
.
_paramId
);
...
...
@@ -2347,6 +2347,7 @@ ConfigInfo::ConfigInfo()
// Replace section with modified section
m_info
.
put
(
param
.
_section
,
section
,
true
);
delete
section
;
if
(
param
.
_type
!=
ConfigInfo
::
CI_SECTION
){
Properties
*
p
;
...
...
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