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
0324bde8
Commit
0324bde8
authored
Aug 26, 2022
by
Daniel Black
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mariabackup: remove MySQL wording
parent
79b58f1c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
extra/mariabackup/backup_mysql.cc
extra/mariabackup/backup_mysql.cc
+6
-6
No files found.
extra/mariabackup/backup_mysql.cc
View file @
0324bde8
...
...
@@ -126,7 +126,7 @@ xb_mysql_connect()
mysql_options
(
connection
,
MYSQL_OPT_PROTOCOL
,
&
opt_protocol
);
mysql_options
(
connection
,
MYSQL_SET_CHARSET_NAME
,
"utf8"
);
msg
(
"Connecting to
MySQL
server host: %s, user: %s, password: %s, "
msg
(
"Connecting to server host: %s, user: %s, password: %s, "
"port: %s, socket: %s"
,
opt_host
?
opt_host
:
"localhost"
,
opt_user
?
opt_user
:
"not set"
,
opt_password
?
"set"
:
"not set"
,
...
...
@@ -153,7 +153,7 @@ xb_mysql_connect()
opt_password
,
""
/*database*/
,
opt_port
,
opt_socket
,
0
))
{
msg
(
"Failed to connect to
MySQL
server: %s."
,
mysql_error
(
connection
));
msg
(
"Failed to connect to server: %s."
,
mysql_error
(
connection
));
mysql_close
(
connection
);
return
(
NULL
);
}
...
...
@@ -342,7 +342,7 @@ check_server_version(unsigned long version_number,
}
/*********************************************************************//**
Receive options important for XtraBackup from
MySQL
server.
Receive options important for XtraBackup from server.
@return true on success. */
bool
get_mysql_vars
(
MYSQL
*
connection
)
{
...
...
@@ -1837,8 +1837,8 @@ static std::string make_local_paths(const char *data_file_path)
bool
write_backup_config_file
()
{
int
rc
=
backup_file_printf
(
"backup-my.cnf"
,
"# This
MySQL
options file was generated by innobackupex.
\n\n
"
"# The
MySQL
server
\n
"
"# This options file was generated by innobackupex.
\n\n
"
"# The server
\n
"
"[mysqld]
\n
"
"innodb_checksum_algorithm=%s
\n
"
"innodb_data_file_path=%s
\n
"
...
...
@@ -1923,7 +1923,7 @@ flush_changed_page_bitmaps()
/*********************************************************************//**
Deallocate memory, disconnect from
MySQL
server, etc.
Deallocate memory, disconnect from server, etc.
@return true on success. */
void
backup_cleanup
()
...
...
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