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
a21eb5d0
Commit
a21eb5d0
authored
May 23, 2005
by
lars@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/bkroot/mysql-4.1 into mysql.com:/home/bk/c4944-4.1
parents
4e2766ff
c492ffcf
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
10 additions
and
11 deletions
+10
-11
include/my_global.h
include/my_global.h
+1
-1
myisammrg/myrg_open.c
myisammrg/myrg_open.c
+3
-1
mysys/my_getwd.c
mysys/my_getwd.c
+4
-1
ndb/src/cw/cpcd/Process.cpp
ndb/src/cw/cpcd/Process.cpp
+1
-4
ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp
ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp
+0
-4
sql/ha_myisammrg.cc
sql/ha_myisammrg.cc
+1
-0
No files found.
include/my_global.h
View file @
a21eb5d0
...
...
@@ -44,7 +44,7 @@
#endif
/* __CYGWIN__ */
/* Determine when to use "#pragma interface" */
#if !defined(__CYGWIN__) && !defined(__I
CC
) && defined(__GNUC__) && (__GNUC__ < 3)
#if !defined(__CYGWIN__) && !defined(__I
NTEL_COMPILER
) && defined(__GNUC__) && (__GNUC__ < 3)
#define USE_PRAGMA_INTERFACE
#endif
...
...
myisammrg/myrg_open.c
View file @
a21eb5d0
...
...
@@ -67,7 +67,7 @@ MYRG_INFO *myrg_open(const char *name, int mode, int handle_locking)
while
((
length
=
my_b_gets
(
&
file
,
buff
,
FN_REFLEN
-
1
)))
{
if
((
end
=
buff
+
length
)[
-
1
]
==
'\n'
)
end
[
-
1
]
=
'\0'
;
*--
end
=
'\0'
;
if
(
!
buff
[
0
])
continue
;
/* Skip empty lines */
if
(
buff
[
0
]
==
'#'
)
...
...
@@ -86,6 +86,8 @@ MYRG_INFO *myrg_open(const char *name, int mode, int handle_locking)
sizeof
(
name_buff
)
-
1
-
dir_length
));
VOID
(
cleanup_dirname
(
buff
,
name_buff
));
}
else
fn_format
(
buff
,
buff
,
""
,
""
,
0
);
if
(
!
(
isam
=
mi_open
(
buff
,
mode
,(
handle_locking
?
HA_OPEN_WAIT_IF_LOCKED
:
0
))))
goto
err
;
if
(
!
m_info
)
/* First file */
...
...
mysys/my_getwd.c
View file @
a21eb5d0
...
...
@@ -209,6 +209,9 @@ int test_if_hard_path(register const char *dir_name)
my_bool
has_path
(
const
char
*
name
)
{
return
test
(
strchr
(
name
,
FN_LIBCHAR
))
#if FN_LIBCHAR != '/'
||
test
(
strchr
(
name
,
'/'
))
#endif
#ifdef FN_DEVCHAR
||
test
(
strchr
(
name
,
FN_DEVCHAR
))
#endif
...
...
ndb/src/cw/cpcd/Process.cpp
View file @
a21eb5d0
...
...
@@ -223,11 +223,8 @@ set_ulimit(const BaseString & pair){
if
(
!
(
list
[
1
].
trim
()
==
"unlimited"
)){
value
=
atoi
(
list
[
1
].
c_str
());
}
#if defined(__INTEL_COMPILER)
struct
rlimit64
rlp
;
#else
struct
rlimit
rlp
;
#endif
#define _RLIMIT_FIX(x) { res = getrlimit(x,&rlp); if(!res){ rlp.rlim_cur = value; res = setrlimit(x, &rlp); }}
if
(
list
[
0
].
trim
()
==
"c"
){
...
...
ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp
View file @
a21eb5d0
...
...
@@ -799,11 +799,7 @@ AsyncFile::rmrfReq(Request * request, char * path, bool removePath){
request
->
error
=
errno
;
return
;
}
#if defined(__INTEL_COMPILER)
struct
dirent64
*
dp
;
#else
struct
dirent
*
dp
;
#endif
while
((
dp
=
readdir
(
dirp
))
!=
NULL
){
if
((
strcmp
(
"."
,
dp
->
d_name
)
!=
0
)
&&
(
strcmp
(
".."
,
dp
->
d_name
)
!=
0
))
{
BaseString
::
snprintf
(
path_add
,
(
size_t
)
path_max_copy
,
"%s%s"
,
...
...
sql/ha_myisammrg.cc
View file @
a21eb5d0
...
...
@@ -422,6 +422,7 @@ int ha_myisammrg::create(const char *name, register TABLE *form,
}
else
table_name
=
(
*
tbl
)
->
path
;
DBUG_PRINT
(
"info"
,(
"MyISAM table_name: '%s'"
,
table_name
));
*
pos
++=
table_name
;
}
*
pos
=
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