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
6f38bd93
Commit
6f38bd93
authored
May 08, 2005
by
mskold@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mskold@bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/usr/local/home/marty/MySQL/mysql-4.1
parents
8945bb5d
4b06c68d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
6 deletions
+18
-6
ndb/src/cw/cpcd/Process.cpp
ndb/src/cw/cpcd/Process.cpp
+4
-1
ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp
ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp
+4
-0
ndb/src/ndbapi/Ndb.cpp
ndb/src/ndbapi/Ndb.cpp
+6
-5
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+4
-0
No files found.
ndb/src/cw/cpcd/Process.cpp
View file @
6f38bd93
...
@@ -220,8 +220,11 @@ set_ulimit(const BaseString & pair){
...
@@ -220,8 +220,11 @@ set_ulimit(const BaseString & pair){
if
(
!
(
list
[
1
].
trim
()
==
"unlimited"
)){
if
(
!
(
list
[
1
].
trim
()
==
"unlimited"
)){
value
=
atoi
(
list
[
1
].
c_str
());
value
=
atoi
(
list
[
1
].
c_str
());
}
}
#if defined(__INTEL_COMPILER)
struct
rlimit64
rlp
;
#else
struct
rlimit
rlp
;
struct
rlimit
rlp
;
#endif
#define _RLIMIT_FIX(x) { res = getrlimit(x,&rlp); if(!res){ rlp.rlim_cur = value; res = setrlimit(x, &rlp); }}
#define _RLIMIT_FIX(x) { res = getrlimit(x,&rlp); if(!res){ rlp.rlim_cur = value; res = setrlimit(x, &rlp); }}
if
(
list
[
0
].
trim
()
==
"c"
){
if
(
list
[
0
].
trim
()
==
"c"
){
...
...
ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp
View file @
6f38bd93
...
@@ -799,7 +799,11 @@ AsyncFile::rmrfReq(Request * request, char * path, bool removePath){
...
@@ -799,7 +799,11 @@ AsyncFile::rmrfReq(Request * request, char * path, bool removePath){
request
->
error
=
errno
;
request
->
error
=
errno
;
return
;
return
;
}
}
#if defined(__INTEL_COMPILER)
struct
dirent64
*
dp
;
#else
struct
dirent
*
dp
;
struct
dirent
*
dp
;
#endif
while
((
dp
=
readdir
(
dirp
))
!=
NULL
){
while
((
dp
=
readdir
(
dirp
))
!=
NULL
){
if
((
strcmp
(
"."
,
dp
->
d_name
)
!=
0
)
&&
(
strcmp
(
".."
,
dp
->
d_name
)
!=
0
))
{
if
((
strcmp
(
"."
,
dp
->
d_name
)
!=
0
)
&&
(
strcmp
(
".."
,
dp
->
d_name
)
!=
0
))
{
BaseString
::
snprintf
(
path_add
,
(
size_t
)
path_max_copy
,
"%s%s"
,
BaseString
::
snprintf
(
path_add
,
(
size_t
)
path_max_copy
,
"%s%s"
,
...
...
ndb/src/ndbapi/Ndb.cpp
View file @
6f38bd93
...
@@ -730,7 +730,7 @@ Ndb::getAutoIncrementValue(const char* aTableName, Uint32 cacheSize)
...
@@ -730,7 +730,7 @@ Ndb::getAutoIncrementValue(const char* aTableName, Uint32 cacheSize)
DBUG_RETURN
(
~
(
Uint64
)
0
);
DBUG_RETURN
(
~
(
Uint64
)
0
);
const
NdbTableImpl
*
table
=
info
->
m_table_impl
;
const
NdbTableImpl
*
table
=
info
->
m_table_impl
;
Uint64
tupleId
=
getTupleIdFromNdb
(
table
->
m_tableId
,
cacheSize
);
Uint64
tupleId
=
getTupleIdFromNdb
(
table
->
m_tableId
,
cacheSize
);
DBUG_PRINT
(
"info"
,
(
"value %u
"
,
tupleId
));
DBUG_PRINT
(
"info"
,
(
"value %u
l"
,
(
ulong
)
tupleId
));
DBUG_RETURN
(
tupleId
);
DBUG_RETURN
(
tupleId
);
}
}
...
@@ -742,7 +742,7 @@ Ndb::getAutoIncrementValue(const NdbDictionary::Table * aTable, Uint32 cacheSize
...
@@ -742,7 +742,7 @@ Ndb::getAutoIncrementValue(const NdbDictionary::Table * aTable, Uint32 cacheSize
DBUG_RETURN
(
~
(
Uint64
)
0
);
DBUG_RETURN
(
~
(
Uint64
)
0
);
const
NdbTableImpl
*
table
=
&
NdbTableImpl
::
getImpl
(
*
aTable
);
const
NdbTableImpl
*
table
=
&
NdbTableImpl
::
getImpl
(
*
aTable
);
Uint64
tupleId
=
getTupleIdFromNdb
(
table
->
m_tableId
,
cacheSize
);
Uint64
tupleId
=
getTupleIdFromNdb
(
table
->
m_tableId
,
cacheSize
);
DBUG_PRINT
(
"info"
,
(
"value %u
"
,
tupleId
));
DBUG_PRINT
(
"info"
,
(
"value %u
l"
,
(
ulong
)
tupleId
));
DBUG_RETURN
(
tupleId
);
DBUG_RETURN
(
tupleId
);
}
}
...
@@ -762,7 +762,8 @@ Ndb::getTupleIdFromNdb(Uint32 aTableId, Uint32 cacheSize)
...
@@ -762,7 +762,8 @@ Ndb::getTupleIdFromNdb(Uint32 aTableId, Uint32 cacheSize)
if
(
theFirstTupleId
[
aTableId
]
!=
theLastTupleId
[
aTableId
]
)
if
(
theFirstTupleId
[
aTableId
]
!=
theLastTupleId
[
aTableId
]
)
{
{
theFirstTupleId
[
aTableId
]
++
;
theFirstTupleId
[
aTableId
]
++
;
DBUG_PRINT
(
"info"
,
(
"next cached value %u"
,
theFirstTupleId
[
aTableId
]));
DBUG_PRINT
(
"info"
,
(
"next cached value %ul"
,
(
ulong
)
theFirstTupleId
[
aTableId
]));
DBUG_RETURN
(
theFirstTupleId
[
aTableId
]);
DBUG_RETURN
(
theFirstTupleId
[
aTableId
]);
}
}
else
// theFirstTupleId == theLastTupleId
else
// theFirstTupleId == theLastTupleId
...
@@ -783,7 +784,7 @@ Ndb::readAutoIncrementValue(const char* aTableName)
...
@@ -783,7 +784,7 @@ Ndb::readAutoIncrementValue(const char* aTableName)
DBUG_RETURN
(
~
(
Uint64
)
0
);
DBUG_RETURN
(
~
(
Uint64
)
0
);
}
}
Uint64
tupleId
=
readTupleIdFromNdb
(
table
->
m_tableId
);
Uint64
tupleId
=
readTupleIdFromNdb
(
table
->
m_tableId
);
DBUG_PRINT
(
"info"
,
(
"value %u
"
,
tupleId
));
DBUG_PRINT
(
"info"
,
(
"value %u
l"
,
(
ulong
)
tupleId
));
DBUG_RETURN
(
tupleId
);
DBUG_RETURN
(
tupleId
);
}
}
...
@@ -795,7 +796,7 @@ Ndb::readAutoIncrementValue(const NdbDictionary::Table * aTable)
...
@@ -795,7 +796,7 @@ Ndb::readAutoIncrementValue(const NdbDictionary::Table * aTable)
DBUG_RETURN
(
~
(
Uint64
)
0
);
DBUG_RETURN
(
~
(
Uint64
)
0
);
const
NdbTableImpl
*
table
=
&
NdbTableImpl
::
getImpl
(
*
aTable
);
const
NdbTableImpl
*
table
=
&
NdbTableImpl
::
getImpl
(
*
aTable
);
Uint64
tupleId
=
readTupleIdFromNdb
(
table
->
m_tableId
);
Uint64
tupleId
=
readTupleIdFromNdb
(
table
->
m_tableId
);
DBUG_PRINT
(
"info"
,
(
"value %u
"
,
tupleId
));
DBUG_PRINT
(
"info"
,
(
"value %u
l"
,
(
ulong
)
tupleId
));
DBUG_RETURN
(
tupleId
);
DBUG_RETURN
(
tupleId
);
}
}
...
...
sql/ha_ndbcluster.cc
View file @
6f38bd93
...
@@ -3003,8 +3003,10 @@ void ha_ndbcluster::start_bulk_insert(ha_rows rows)
...
@@ -3003,8 +3003,10 @@ void ha_ndbcluster::start_bulk_insert(ha_rows rows)
m_rows_inserted
=
(
ha_rows
)
0
;
m_rows_inserted
=
(
ha_rows
)
0
;
if
(
rows
==
(
ha_rows
)
0
)
if
(
rows
==
(
ha_rows
)
0
)
{
/* We don't know how many will be inserted, guess */
/* We don't know how many will be inserted, guess */
m_rows_to_insert
=
m_autoincrement_prefetch
;
m_rows_to_insert
=
m_autoincrement_prefetch
;
}
else
else
m_rows_to_insert
=
rows
;
m_rows_to_insert
=
rows
;
...
@@ -4021,8 +4023,10 @@ longlong ha_ndbcluster::get_auto_increment()
...
@@ -4021,8 +4023,10 @@ longlong ha_ndbcluster::get_auto_increment()
Ndb
*
ndb
=
get_ndb
();
Ndb
*
ndb
=
get_ndb
();
if
(
m_rows_inserted
>
m_rows_to_insert
)
if
(
m_rows_inserted
>
m_rows_to_insert
)
{
/* We guessed too low */
/* We guessed too low */
m_rows_to_insert
+=
m_autoincrement_prefetch
;
m_rows_to_insert
+=
m_autoincrement_prefetch
;
}
int
cache_size
=
int
cache_size
=
(
int
)
(
int
)
(
m_rows_to_insert
-
m_rows_inserted
<
m_autoincrement_prefetch
)
?
(
m_rows_to_insert
-
m_rows_inserted
<
m_autoincrement_prefetch
)
?
...
...
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