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
785f2bd5
Commit
785f2bd5
authored
Mar 15, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge rburnett@bk-internal.mysql.com:/home/bk/mysql-5.0
into mdk10.(none):/home/reggie/bk/mysql-5.0
parents
5c78473a
c650c82a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
client/mysqldump.c
client/mysqldump.c
+1
-0
sql/sql_show.cc
sql/sql_show.cc
+8
-0
No files found.
client/mysqldump.c
View file @
785f2bd5
...
...
@@ -1084,6 +1084,7 @@ static void print_xml_row(FILE *xml_file, const char *row_name,
check_io
(
xml_file
);
}
/*
getStructure -- retrievs database structure, prints out corresponding
CREATE statement and fills out insert_pat.
...
...
sql/sql_show.cc
View file @
785f2bd5
...
...
@@ -703,7 +703,15 @@ static void append_directory(THD *thd, String *packet, const char *dir_type,
packet
->
append
(
' '
);
packet
->
append
(
dir_type
);
packet
->
append
(
" DIRECTORY='"
,
12
);
#ifdef __WIN__
char
*
winfilename
=
thd
->
memdup
(
filename
,
length
);
for
(
uint
i
=
0
;
i
<
length
;
i
++
)
if
(
winfilename
[
i
]
==
'\\'
)
winfilename
[
i
]
=
'/'
;
packet
->
append
(
winfilename
,
length
);
#else
packet
->
append
(
filename
,
length
);
#endif
packet
->
append
(
'\''
);
}
}
...
...
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