Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge branch '5.5' into 10.1 | Vicențiu Ciorbaru | 2019-05-11 | 1 | -2/+2 |
|\ | |||||
| * | Update FSF address | Michal Schorm | 2019-05-10 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit is based on the work of Michal Schorm, rebased on the earliest MariaDB version. Th command line used to generate this diff was: find ./ -type f \ -exec sed -i -e 's/Foundation, Inc., 59 Temple Place, Suite 330, Boston, /Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, /g' {} \; \ -exec sed -i -e 's/Foundation, Inc. 59 Temple Place.* Suite 330, Boston, /Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, /g' {} \; \ -exec sed -i -e 's/MA.*.....-1307.*USA/MA 02110-1335 USA/g' {} \; \ -exec sed -i -e 's/Foundation, Inc., 59 Temple/Foundation, Inc., 51 Franklin/g' {} \; \ -exec sed -i -e 's/Place, Suite 330, Boston, MA.*02111-1307.*USA/Street, Fifth Floor, Boston, MA 02110-1335 USA/g' {} \; \ -exec sed -i -e 's/MA.*.....-1307/MA 02110-1335/g' {} \; | ||||
* | | MDEV-19427 mysql_upgrade_service throws exception upgrading from 10.0 to 10.3 | Vladislav Vaintroub | 2019-05-09 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | The crash happens when writing into log file. The reason is likely that the call to WriteFile() was missing a valid parameter for lpNumberOfBytesWritten. This seems only to happen on ancient version of Windows. Since the fix to MDEV-16430 in 141bc58ac992, null pointer was passed instead of valid pointer. The fix is to provide a valid lpNumberOfBytesWritten parameter. | ||||
* | | Merge branch '10.0' into 10.1 | Vicențiu Ciorbaru | 2018-06-12 | 1 | -5/+15 |
|\ \ | |||||
| * | | MDEV-16445 mysql_upgrade_service should add skip-slave-start to server start ↵ | Vladislav Vaintroub | 2018-06-08 | 1 | -1/+1 |
| | | | | | | | | | | | | parameters | ||||
| * | | MDEV-16430: mysql_upgrade_service does not write log file. | Vladislav Vaintroub | 2018-06-08 | 1 | -4/+14 |
| |/ | | | | | | | | | | | Fixed CreateFile() for the log file - TRUNCATE_EXISTING does not create a new file, use CREATE_ALWAYS - Make log file handle inheritable | ||||
* | | Correct FSF address | iangilfillan | 2017-03-10 | 1 | -1/+1 |
|/ | |||||
* | - Properly terminate options array with all-zero entry. | Vladislav Vaintroub | 2011-05-20 | 1 | -5/+6 |
| | | | | - Fix CRLF end of lines, use LF instead | ||||
* | mwl#59 - windows installer. | Vladislav Vaintroub | 2011-03-09 | 1 | -112/+83 |
| | | | | Address Monty's review comments | ||||
* | MWL#55: mysql_upgrade_service.exe will now ensure that datadir is always ↵ | Vladislav Vaintroub | 2011-02-08 | 1 | -15/+14 |
| | | | | written to my.ini file | ||||
* | Remove --loose-skip-pbxt kludge from mysql_install_db | Vladislav Vaintroub | 2011-02-04 | 1 | -5/+0 |
| | | | | | and mysql_upgrade_service, after LPBUG#688404 was fixed. | ||||
* | MWL#55: Handle cases where service was installed with | Vladislav Vaintroub | 2011-02-04 | 1 | -2/+26 |
| | | | | | | | | | | | mysqld --install without any parameters. In such case, service name is always MYSQL, as service binary path is "path\to\mysqld.exe" "MySQL". Guess data directory it is either from my.ini (which is assumed to be in the installation root), or just data directory under install root. | ||||
* | MWL#55 : Add banner text to command line utilities | Vladislav Vaintroub | 2011-02-03 | 1 | -8/+16 |
| | | | | (Philip's review) | ||||
* | Move common functionality (analyze service configuration) into winservice ↵ | Vladislav Vaintroub | 2011-01-30 | 1 | -49/+23 |
| | | | | library | ||||
* | MWL#55 - mysql_upgrade_service.exe | Vladislav Vaintroub | 2011-01-29 | 1 | -0/+550 |
New utility to upgrade Windows service to higher MariaDB version. Its functionality includes changing service definition as well as running mysql_upgrade. |