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
a8cbb00d
Commit
a8cbb00d
authored
Sep 27, 2004
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge build.mysql.com:/home/bk/mysql-4.0
into build.mysql.com:/users/rburnett/mysql-4.0
parents
fb1407d5
550c4eb7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
9 deletions
+5
-9
sql/sql_show.cc
sql/sql_show.cc
+5
-9
No files found.
sql/sql_show.cc
View file @
a8cbb00d
...
...
@@ -193,27 +193,23 @@ mysql_find_files(THD *thd,List<char> *files, const char *db,const char *path,
{
/* Return databases */
#ifdef USE_SYMDIR
char
*
ext
;
char
buff
[
FN_REFLEN
];
if
(
my_use_symdir
&&
!
strcmp
(
ext
=
fn_ext
(
file
->
name
),
".sym"
))
{
/* Only show the sym file if it points to a directory */
char
buff
[
FN_REFLEN
],
*
end
;
MY_STAT
status
;
char
*
end
;
*
ext
=
0
;
/* Remove extension */
unpack_dirname
(
buff
,
file
->
name
);
end
=
strend
(
buff
);
if
(
end
!=
buff
&&
end
[
-
1
]
==
FN_LIBCHAR
)
end
[
-
1
]
=
0
;
// Remove end FN_LIBCHAR
if
(
!
my_stat
(
buff
,
&
status
,
MYF
(
0
))
||
!
MY_S_ISDIR
(
status
.
st_mode
))
continue
;
}
else
if
(
!
my_stat
(
buff
,
file
->
mystat
,
MYF
(
0
)))
continue
;
}
#endif
{
if
(
file
->
name
[
0
]
==
'.'
||
!
MY_S_ISDIR
(
file
->
mystat
->
st_mode
)
||
(
wild
&&
wild_compare
(
file
->
name
,
wild
,
0
)))
continue
;
}
}
else
{
...
...
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