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
0caad866
Commit
0caad866
authored
Oct 25, 2004
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge tulin@bk-internal.mysql.com:/home/bk/mysql-4.1
into poseidon.ndb.mysql.com:/home/tomas/mysql-4.1
parents
24b83b58
529e4caf
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
12 deletions
+21
-12
ndb/src/kernel/blocks/dbtux/DbtuxScan.cpp
ndb/src/kernel/blocks/dbtux/DbtuxScan.cpp
+1
-1
ndb/src/mgmsrv/MgmtSrvr.cpp
ndb/src/mgmsrv/MgmtSrvr.cpp
+4
-1
ndb/src/mgmsrv/main.cpp
ndb/src/mgmsrv/main.cpp
+10
-9
ndb/tools/select_all.cpp
ndb/tools/select_all.cpp
+6
-1
No files found.
ndb/src/kernel/blocks/dbtux/DbtuxScan.cpp
View file @
0caad866
...
...
@@ -172,7 +172,7 @@ Dbtux::execTUX_BOUND_INFO(Signal* signal)
BoundInfo
&
b
=
boundInfo
[
j
][
attrId
];
if
(
b
.
type
!=
-
1
)
{
// compare with previous bound
if
(
b
.
type
!=
type2
||
if
(
b
.
type
!=
(
int
)
type2
||
b
.
size
!=
2
+
dataSize
||
memcmp
(
&
data
[
b
.
offset
+
2
],
&
data
[
offset
+
2
],
dataSize
<<
2
)
!=
0
)
{
jam
();
...
...
ndb/src/mgmsrv/MgmtSrvr.cpp
View file @
0caad866
...
...
@@ -1656,7 +1656,10 @@ MgmtSrvr::setSignalLoggingMode(int processId, LogMode mode,
logSpec
=
TestOrd
::
InputOutputSignals
;
break
;
default:
assert
(
"Unexpected value, MgmtSrvr::setSignalLoggingMode"
==
0
);
ndbout_c
(
"Unexpected value %d, MgmtSrvr::setSignalLoggingMode, line %d"
,
(
unsigned
)
mode
,
__LINE__
);
assert
(
false
);
return
-
1
;
}
NdbApiSignal
*
signal
=
getSignal
();
...
...
ndb/src/mgmsrv/main.cpp
View file @
0caad866
...
...
@@ -104,24 +104,25 @@ const char *debug_option= 0;
struct
getargs
args
[]
=
{
{
"version"
,
'v'
,
arg_flag
,
&
_print_version
,
"Print ndb_mgmd version"
},
"Print ndb_mgmd version"
,
""
},
{
"config-file"
,
'c'
,
arg_string
,
&
glob
.
config_filename
,
"Specify cluster configuration file (will default use config.ini if available)"
,
"filename"
},
"Specify cluster configuration file (default config.ini if available)"
,
"filename"
},
#ifndef DBUG_OFF
{
"debug"
,
0
,
arg_string
,
&
debug_option
,
"Specify debug options e.g. d:t:i:o,out.trace"
,
"options"
},
"Specify debug options e.g. d:t:i:o,out.trace"
,
"options"
},
#endif
{
"daemon"
,
'd'
,
arg_flag
,
&
glob
.
daemon
,
"Run ndb_mgmd in daemon mode (default)"
},
"Run ndb_mgmd in daemon mode (default)"
,
""
},
{
NULL
,
'l'
,
arg_string
,
&
glob
.
local_config_filename
,
"Specify configuration file connect string (
will default use
Ndb.cfg if available)"
,
"filename"
},
"Specify configuration file connect string (
default
Ndb.cfg if available)"
,
"filename"
},
{
"interactive"
,
0
,
arg_flag
,
&
glob
.
interactive
,
"Run interactive. Not supported but provided for testing purposes"
,
""
},
"Run interactive. Not supported but provided for testing purposes"
,
""
},
{
"no-nodeid-checks"
,
0
,
arg_flag
,
&
g_no_nodeid_checks
,
"Do not provide any node id checks"
,
""
},
"Do not provide any node id checks"
,
""
},
{
"nodaemon"
,
0
,
arg_flag
,
&
glob
.
non_interactive
,
"Don't run as daemon, but don't read from stdin"
,
"non-interactive"
}
"Don't run as daemon, but don't read from stdin"
,
"non-interactive"
}
};
int
num_args
=
sizeof
(
args
)
/
sizeof
(
args
[
0
]);
...
...
ndb/tools/select_all.cpp
View file @
0caad866
...
...
@@ -116,6 +116,11 @@ int main(int argc, const char** argv){
ndbout
<<
" Table "
<<
_tabname
<<
" does not exist!"
<<
endl
;
return
NDBT_ProgramExit
(
NDBT_WRONGARGS
);
}
if
(
_order
&&
pIdx
==
NULL
){
ndbout
<<
" Order flag given without an index"
<<
endl
;
return
NDBT_ProgramExit
(
NDBT_WRONGARGS
);
}
if
(
scanReadRecords
(
&
MyNdb
,
pTab
,
...
...
@@ -146,7 +151,7 @@ int scanReadRecords(Ndb* pNdb,
int
check
;
NdbConnection
*
pTrans
;
NdbScanOperation
*
pOp
;
NdbIndexScanOperation
*
pIOp
;
NdbIndexScanOperation
*
pIOp
=
0
;
NDBT_ResultRow
*
row
=
new
NDBT_ResultRow
(
*
pTab
,
delimiter
);
...
...
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