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
cd8b89d3
Commit
cd8b89d3
authored
Dec 06, 2005
by
stewart@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/stewart/Documents/MySQL/4.1/cleanup
into mysql.com:/home/stewart/Documents/MySQL/5.0/cleanup
parents
17cab43f
00467106
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
25 additions
and
27 deletions
+25
-27
ndb/src/kernel/blocks/backup/Backup.cpp
ndb/src/kernel/blocks/backup/Backup.cpp
+1
-1
ndb/src/kernel/blocks/dbdih/DbdihMain.cpp
ndb/src/kernel/blocks/dbdih/DbdihMain.cpp
+9
-5
ndb/src/kernel/blocks/dblqh/DblqhMain.cpp
ndb/src/kernel/blocks/dblqh/DblqhMain.cpp
+12
-18
ndb/tools/ndb_size.pl
ndb/tools/ndb_size.pl
+3
-3
No files found.
ndb/src/kernel/blocks/backup/Backup.cpp
View file @
cd8b89d3
...
...
@@ -3871,7 +3871,7 @@ Backup::checkFile(Signal* signal, BackupFilePtr filePtr)
req
->
userReference
=
reference
();
req
->
varIndex
=
0
;
req
->
offset
=
tmp
-
c_startOfPages
;
req
->
size
=
sz
;
//
Avrunda uppot
req
->
size
=
sz
;
//
Round up
sendSignal
(
NDBFS_REF
,
GSN_FSAPPENDREQ
,
signal
,
FsAppendReq
::
SignalLength
,
JBA
);
...
...
ndb/src/kernel/blocks/dbdih/DbdihMain.cpp
View file @
cd8b89d3
...
...
@@ -11087,7 +11087,11 @@ void Dbdih::initCommonData()
cnoReplicas
=
1
;
ndb_mgm_get_int_parameter
(
p
,
CFG_DB_NO_REPLICAS
,
&
cnoReplicas
);
cnoReplicas
=
cnoReplicas
>
4
?
4
:
cnoReplicas
;
if
(
cnoReplicas
>
4
)
{
progError
(
__LINE__
,
NDBD_EXIT_INVALID_CONFIG
,
"Only up to four replicas are supported. Check NoOfReplicas."
);
}
cgcpDelay
=
2000
;
ndb_mgm_get_int_parameter
(
p
,
CFG_DB_GCP_INTERVAL
,
&
cgcpDelay
);
...
...
@@ -11675,14 +11679,14 @@ void Dbdih::execCHECKNODEGROUPSREQ(Signal* signal)
break
;
case
CheckNodeGroups
:
:
GetNodeGroupMembers
:
{
ok
=
true
;
Uint32
ownNodeGoup
=
Uint32
ownNodeG
r
oup
=
Sysfile
::
getNodeGroup
(
sd
->
nodeId
,
SYSFILE
->
nodeGroups
);
sd
->
output
=
ownNodeGoup
;
sd
->
output
=
ownNodeG
r
oup
;
sd
->
mask
.
clear
();
NodeGroupRecordPtr
ngPtr
;
ngPtr
.
i
=
ownNodeGoup
;
ngPtr
.
i
=
ownNodeG
r
oup
;
ptrAss
(
ngPtr
,
nodeGroupRecord
);
for
(
Uint32
j
=
0
;
j
<
ngPtr
.
p
->
nodeCount
;
j
++
)
{
jam
();
...
...
@@ -11690,7 +11694,7 @@ void Dbdih::execCHECKNODEGROUPSREQ(Signal* signal)
}
#if 0
for (int i = 0; i < MAX_NDB_NODES; i++) {
if (ownNodeGoup ==
if (ownNodeG
r
oup ==
Sysfile::getNodeGroup(i, SYSFILE->nodeGroups)) {
sd->mask.set(i);
}
...
...
ndb/src/kernel/blocks/dblqh/DblqhMain.cpp
View file @
cd8b89d3
...
...
@@ -18562,60 +18562,54 @@ void
Dblqh
::
execCREATE_TRIG_REQ
(
Signal
*
signal
)
{
jamEntry
();
NodeId
myNodeId
=
getOwnNodeId
();
BlockReference
tupref
=
calcTupBlockRef
(
myNodeId
);
sendSignal
(
tupref
,
GSN_CREATE_TRIG_REQ
,
signal
,
CreateTrigReq
::
SignalLength
,
JBB
);
sendSignal
(
DBTUP_REF
,
GSN_CREATE_TRIG_REQ
,
signal
,
CreateTrigReq
::
SignalLength
,
JBB
);
}
void
Dblqh
::
execCREATE_TRIG_CONF
(
Signal
*
signal
)
{
jamEntry
();
NodeId
myNodeId
=
getOwnNodeId
();
BlockReference
dictref
=
calcDictBlockRef
(
myNodeId
);
sendSignal
(
dictref
,
GSN_CREATE_TRIG_CONF
,
signal
,
CreateTrigConf
::
SignalLength
,
JBB
);
sendSignal
(
DBDICT_REF
,
GSN_CREATE_TRIG_CONF
,
signal
,
CreateTrigConf
::
SignalLength
,
JBB
);
}
void
Dblqh
::
execCREATE_TRIG_REF
(
Signal
*
signal
)
{
jamEntry
();
NodeId
myNodeId
=
getOwnNodeId
();
BlockReference
dictref
=
calcDictBlockRef
(
myNodeId
);
sendSignal
(
dictref
,
GSN_CREATE_TRIG_REF
,
signal
,
CreateTrigRef
::
SignalLength
,
JBB
);
sendSignal
(
DBDICT_REF
,
GSN_CREATE_TRIG_REF
,
signal
,
CreateTrigRef
::
SignalLength
,
JBB
);
}
void
Dblqh
::
execDROP_TRIG_REQ
(
Signal
*
signal
)
{
jamEntry
();
NodeId
myNodeId
=
getOwnNodeId
();
BlockReference
tupref
=
calcTupBlockRef
(
myNodeId
);
sendSignal
(
tupref
,
GSN_DROP_TRIG_REQ
,
signal
,
DropTrigReq
::
SignalLength
,
JBB
);
sendSignal
(
DBTUP_REF
,
GSN_DROP_TRIG_REQ
,
signal
,
DropTrigReq
::
SignalLength
,
JBB
);
}
void
Dblqh
::
execDROP_TRIG_CONF
(
Signal
*
signal
)
{
jamEntry
();
NodeId
myNodeId
=
getOwnNodeId
();
BlockReference
dictref
=
calcDictBlockRef
(
myNodeId
);
sendSignal
(
dictref
,
GSN_DROP_TRIG_CONF
,
signal
,
DropTrigConf
::
SignalLength
,
JBB
);
sendSignal
(
DBDICT_REF
,
GSN_DROP_TRIG_CONF
,
signal
,
DropTrigConf
::
SignalLength
,
JBB
);
}
void
Dblqh
::
execDROP_TRIG_REF
(
Signal
*
signal
)
{
jamEntry
();
NodeId
myNodeId
=
getOwnNodeId
();
BlockReference
dictref
=
calcDictBlockRef
(
myNodeId
);
sendSignal
(
dictref
,
GSN_DROP_TRIG_REF
,
signal
,
DropTrigRef
::
SignalLength
,
JBB
);
sendSignal
(
DBDICT_REF
,
GSN_DROP_TRIG_REF
,
signal
,
DropTrigRef
::
SignalLength
,
JBB
);
}
Uint32
Dblqh
::
calcPageCheckSum
(
LogPageRecordPtr
logP
){
...
...
ndb/tools/ndb_size.pl
View file @
cd8b89d3
...
...
@@ -146,9 +146,9 @@ foreach(@{$tables})
elsif
(
$type
=~
/varchar/
||
$type
=~
/varbinary/
)
{
my
$fixed
=
1
+
$size
;
my
@dynamic
=
$dbh
->
selectrow_array
("
select avg(length(
"
.
$
dbh
->
quote
(
$name
)
.
"
)) from `
"
.
$table
.
'
`
');
my
@dynamic
=
$dbh
->
selectrow_array
("
select avg(length(
`
"
.
$
name
.
.
"
`
)) from `
"
.
$table
.
'
`
');
$dynamic
[
0
]
=
0
if
!
$dynamic
[
0
];
@realsize
=
(
$fixed
,
$fixed
,
ceil
(
$dynamic
[
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