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
8e95f4af
Commit
8e95f4af
authored
Sep 01, 2009
by
Mattias Jonsson
Browse files
Options
Browse Files
Download
Plain Diff
merge to update with latest mysql-5.1-bugteam
parents
2c6789aa
c001f9cc
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
10 deletions
+10
-10
BUILD/check-cpu
BUILD/check-cpu
+5
-4
storage/ndb/src/kernel/blocks/dbdict/Dbdict.cpp
storage/ndb/src/kernel/blocks/dbdict/Dbdict.cpp
+2
-2
storage/ndb/src/mgmsrv/InitConfigFileParser.cpp
storage/ndb/src/mgmsrv/InitConfigFileParser.cpp
+3
-4
No files found.
BUILD/check-cpu
View file @
8e95f4af
...
...
@@ -70,6 +70,11 @@ check_cpu () {
Alpha
*
EV6
*
)
cpu_arg
=
"ev6"
;
;;
#Core 2 Duo
*
Intel
*
Core
\(
TM
\)
2
*
)
cpu_arg
=
"nocona"
core2
=
"yes"
;;
# Intel ia32
*
Intel
*
Core
*
|
*
X[eE][oO][nN]
*
)
# a Xeon is just another pentium4 ...
...
...
@@ -134,10 +139,6 @@ check_cpu () {
*
i386
*
)
cpu_arg
=
"i386"
;;
#Core 2 Duo
*
Intel
*
Core
\(
TM
\)
2
*
)
cpu_arg
=
"nocona"
;;
# Intel ia64
*
Itanium
*
)
cpu_arg
=
"itanium"
...
...
storage/ndb/src/kernel/blocks/dbdict/Dbdict.cpp
View file @
8e95f4af
...
...
@@ -7521,8 +7521,8 @@ void Dbdict::execGET_TABINFOREQ(Signal* signal)
return
;
}
releaseSections
(
signal
);
DictObject
*
old_ptr_p
=
old_ptr_p
=
get_object
(
tableName
,
len
);
DictObject
*
old_ptr_p
=
get_object
(
tableName
,
len
);
if
(
old_ptr_p
)
obj_id
=
old_ptr_p
->
m_id
;
}
else
{
...
...
storage/ndb/src/mgmsrv/InitConfigFileParser.cpp
View file @
8e95f4af
...
...
@@ -208,11 +208,10 @@ InitConfigFileParser::run_config_rules(Context& ctx)
ctx
.
m_config
->
put
(
"NoOfNodes"
,
nNodes
);
char
tmpLine
[
MAX_LINE_LENGTH
];
BaseString
::
snprintf
(
tmpLine
,
MAX_LINE_LENGTH
,
"EXTERNAL SYSTEM_"
);
strncat
(
tmpLine
,
system
,
MAX_LINE_LENGTH
);
strncat
(
tmpLine
,
":NoOfConnections"
,
MAX_LINE_LENGTH
);
BaseString
::
snprintf
(
tmpLine
,
MAX_LINE_LENGTH
,
"EXTERNAL SYSTEM_%s:NoOfConnections"
,
system
);
ctx
.
m_config
->
put
(
tmpLine
,
nExtConnections
);
Config
*
ret
=
new
Config
();
ret
->
m_configValues
=
(
struct
ndb_mgm_configuration
*
)
ctx
.
m_configValues
.
getConfigValues
();
ret
->
m_oldConfig
=
ctx
.
m_config
;
ctx
.
m_config
=
0
;
...
...
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