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
800f2f46
Commit
800f2f46
authored
Oct 24, 2003
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added quotas for database names
(fixed bug #1348) client/mysqldump.c: added quotas for database names
parent
0adf47e6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
client/mysqldump.c
client/mysqldump.c
+4
-1
No files found.
client/mysqldump.c
View file @
800f2f46
...
@@ -1271,10 +1271,13 @@ static int init_dumping(char *database)
...
@@ -1271,10 +1271,13 @@ static int init_dumping(char *database)
{
{
if
(
opt_databases
||
opt_alldbs
)
if
(
opt_databases
||
opt_alldbs
)
{
{
/* length of table name * 2 (if name contain quotas), 2 quotas and 0 */
char
quoted_database_buf
[
64
*
2
+
3
];
char
*
qdatabase
=
quote_name
(
database
,
quoted_database_buf
,
opt_quoted
);
fprintf
(
md_result_file
,
"
\n
--
\n
-- Current Database: %s
\n
--
\n
"
,
database
);
fprintf
(
md_result_file
,
"
\n
--
\n
-- Current Database: %s
\n
--
\n
"
,
database
);
if
(
!
opt_create_db
)
if
(
!
opt_create_db
)
fprintf
(
md_result_file
,
"
\n
CREATE DATABASE /*!32312 IF NOT EXISTS*/ %s;
\n
"
,
fprintf
(
md_result_file
,
"
\n
CREATE DATABASE /*!32312 IF NOT EXISTS*/ %s;
\n
"
,
database
);
q
database
);
fprintf
(
md_result_file
,
"
\n
USE %s;
\n
"
,
database
);
fprintf
(
md_result_file
,
"
\n
USE %s;
\n
"
,
database
);
}
}
}
}
...
...
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