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
0e3921a8
Commit
0e3921a8
authored
Feb 04, 2011
by
Vladislav Vaintroub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove --loose-skip-pbxt kludge from mysql_install_db
and mysql_upgrade_service, after LPBUG#688404 was fixed.
parent
30acab27
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
12 deletions
+2
-12
sql/mysql_install_db.cc
sql/mysql_install_db.cc
+2
-7
sql/mysql_upgrade_service.cc
sql/mysql_upgrade_service.cc
+0
-5
No files found.
sql/mysql_install_db.cc
View file @
0e3921a8
...
...
@@ -272,11 +272,6 @@ static int create_myini()
fprintf
(
myini
,
"port=%d
\n
"
,
opt_port
);
}
#ifdef _WIN64
/* PBXT does not work in 64 bit windows, sorry. */
fprintf
(
myini
,
"loose-skip-pbxt
\n
"
);
#endif
/* Write out client settings. */
fprintf
(
myini
,
"[client]
\n
"
);
if
(
opt_socket
&&
opt_socket
[
0
])
...
...
sql/mysql_upgrade_service.cc
View file @
0e3921a8
...
...
@@ -394,17 +394,12 @@ static void change_service_config()
WritePrivateProfileString
(
"mysqld"
,
"datadir"
,
buf
,
props
.
inifile
);
}
/*
Remove basedir from defaults file, otherwise the service wont come up in
the new version, and will complain about mismatched message file.
*/
WritePrivateProfileString
(
"mysqld"
,
"basedir"
,
NULL
,
props
.
inifile
);
#ifdef _WIN64
/* Currently, pbxt is non-functional on x64 */
WritePrivateProfileString
(
"mysqld"
,
"loose-skip-pbxt"
,
"1"
,
props
.
inifile
);
#endif
/*
Replace default-character-set with character-set-server, to avoid
"default-character-set is deprecated and will be replaced ..."
...
...
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