summaryrefslogtreecommitdiff
path: root/scripts
Commit message (Collapse)AuthorAgeFilesLines
* Merge production.mysql.com:/usersnfs/jperkin/bk/build/5.0jperkin@production.mysql.com2007-10-042-0/+11
|\ | | | | | | into production.mysql.com:/usersnfs/jperkin/bk/build/5.1
| * Restore creation of test databases and the anonymous user whichjperkin@production.mysql.com2007-10-042-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | were accidentally removed during a previous rototill of this code. Fixes bug#27692. While it can be argued we should strive to provide a 'secure by default' installation, this happens to be the setup currently documented in the manual as the default, so defer changes that improve security out of the box to a co-ordinated effort later on. For now, make a note about the test databases and anonymous user in mysql_install_db and recommend that mysql_secure_installation be ran for users wishing to remove these defaults. [..re-commit of previously lost change..]
| * Merge trift2.:/MySQL/M50/mysql-5.0joerg@trift2.2007-09-041-1/+1
| |\ | | | | | | | | | into trift2.:/MySQL/M50/push-5.0
* | \ Merge kboortz@bk-internal.mysql.com:/home/bk/mysql-5.1-buildkent@kent-amd64.(none)2007-10-011-0/+1
|\ \ \ | | | | | | | | | | | | into mysql.com:/home/kent/bk/make-install/mysql-5.1-build
| * \ \ Merge trift2.:/MySQL/M51/clone-5.1joerg@trift2.2007-09-281-0/+1
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | into trift2.:/MySQL/M51/push-5.1 This is mysql-5.1.22-rc.
| | * | | Preliminary fix forjoerg@trift2.2007-09-281-0/+1
| | | | | | | | | | | | | | | | | | | | Bug #30759 mysql_install_db fails to set $extra_bindir properly in all cases.
| | * | | scripts/mysqld_safe.shjoerg@trift2.2007-09-141-1/+1
| | | | | | | | | | | | | | | | | | | | Copy a fix by jperkin for bug#30624 into the 5.1.22 build tree.
* | | | | make_binary_distribution.sh:kent@mysql.com/kent-amd64.(none)2007-10-011-0/+29
| | | | | | | | | | | | | | | | | | | | | | | | | Added special handling of "mysql_install_db" and "mysql.server" scripts, find executables relative to the current directory.
* | | | | Makefile.am, make_binary_distribution.sh:kent@mysql.com/kent-amd64.(none)2007-09-272-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use custom 'pkgduppdir' mysql.server.sh: The server is installed in 'libexecdir'
* | | | | Merge kboortz@bk-internal.mysql.com:/home/bk/mysql-5.1-buildkent@kent-amd64.(none)2007-09-262-240/+203
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | into mysql.com:/home/kent/bk/make-install/mysql-5.1-build
| * | | | make_binary_distribution.sh:kent@mysql.com/kent-amd64.(none)2007-09-262-241/+204
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use 'make install' to create the package Makefile.am: Added 'pkgsuppdir' to control location separately Pass on mandir and infodir Don't install headers
* | | | | Merge production.mysql.com:/usersnfs/jperkin/bk/trees/build-gca/mysql-5.1jperkin@production.mysql.com2007-09-071-1/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | into production.mysql.com:/usersnfs/jperkin/bk/trees/51/mysql-5.1
| * | | | | Finish up last syslog -> want_syslog change missed in r1.91,jperkin@production.mysql.com2007-08-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | fixing bug#30624
* | | | | | Merge trift2.:/MySQL/M51/mysql-5.1joerg@trift2.2007-09-042-24/+9
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | into trift2.:/MySQL/M51/push-5.1
| * \ \ \ \ \ Merge ramayana.hindu.god:/home/tsmith/m/bk/maint/50tsmith@ramayana.hindu.god2007-08-281-24/+8
| |\ \ \ \ \ \ | | | |_|_|/ / | | |/| | | | | | | | | | | into ramayana.hindu.god:/home/tsmith/m/bk/maint/51
| | * | | | | Merge ramayana.hindu.god:/home/tsmith/m/bk/maint/b27694/50tsmith@ramayana.hindu.god2007-08-281-24/+8
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | into ramayana.hindu.god:/home/tsmith/m/bk/maint/50
| | | * | | | | Bug #27694: mysqlhotcopy & p5-DBD-mysql51-4.003tsmith@ramayana.hindu.god2007-08-201-24/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use "SHOW TABLES FROM `db`" instead of $dbh->tables() in the get_list_of_tables() routine. The symptom is that, when used with recent versions of DBD::mysql, mysqlhotcopy uses a double-qualified table name, for example: Invalid db.table name 'test.test`.`x' at /usr/bin/mysqlhotcopy line 855. This is caused by a change in DBD::mysql. See this diff: http://svn.perl.org/viewcvs/modules/DBD-mysql/trunk/lib/DBD/mysql.pm?r1=9183&r2=9188 Basically, older DBD::mysql implemented a limited ->table_info method; now the full method is implemented, and as a result DBI's ->tables() method has access to the schema value, so it uses it.
| * | | | | | | Merge ramayana.hindu.god:/home/tsmith/m/bk/51-target22-Xtsmith@ramayana.hindu.god2007-08-271-1/+1
| |\ \ \ \ \ \ \ | | | |_|_|_|/ / | | |/| | | | | | | | | | | | | into ramayana.hindu.god:/home/tsmith/m/bk/maint/51
| | * | | | | | Merge trift2.:/MySQL/M51/netware3-5.1joerg@trift2.2007-08-271-1/+1
| | |\ \ \ \ \ \ | | | |_|_|/ / / | | |/| | | | | | | | | | | | | into trift2.:/MySQL/M51/target-5.1.22
| * | | | | | | Merge ramayana.hindu.god:/home/tsmith/m/bk/51tsmith@ramayana.hindu.god2007-08-271-33/+67
| |\ \ \ \ \ \ \ | | |/ / / / / / | | | | | | | | | | | | | | | | into ramayana.hindu.god:/home/tsmith/m/bk/maint/51
| * | | | | | | Bug#28401 mysql_upgrade Failed with STRICT_ALL_TABLES, ANSI_QUOTES and ↵msvensson@pilot.(none)2007-08-271-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | NO_ZERO_DATE - Set sql_mode to default when creating system tables
| * | | | | | | Cset exclude: msvensson@pilot.(none)|ChangeSet|20070827092310|49459msvensson@pilot.(none)2007-08-271-2/+2
| | | | | | | |
| * | | | | | | Bug#30029 mysql_upgrade fails for 5.0 -> 5.1.21, 5.1.20 -> 5.1.21 upgradesmsvensson@pilot.(none)2007-08-271-2/+2
| | |_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | - Change to use '' to quote a string inside another string
* | | | | | | Merge mysql.com:/home/kent/bk/tmp/mysql-5.0-buildkent@kent-amd64.(none)2007-08-291-1/+1
|\ \ \ \ \ \ \ | | |_|_|_|_|/ | |/| | | | | | | | | | | | into mysql.com:/home/kent/bk/tmp/mysql-5.1-build
| * | | | | | Merge mysql.com:/home/kent/bk/tmp/mysql-4.1-buildkent@kent-amd64.(none)2007-08-291-1/+1
| |\ \ \ \ \ \ | | |_|_|_|/ / | |/| | | | | | | | | | | | into mysql.com:/home/kent/bk/tmp/mysql-5.0-build
| | * | | | | mysql_config.sh:kent@mysql.com/kent-amd64.(none)2007-08-291-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Flag changed name in icc 10
| * | | | | | make_win_src_distribution_old.sh:kent@mysql.com/kent-amd64.(none)2007-08-142-3/+11
| | |_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | Rename: scripts/make_win_src_distribution.sh -> scripts/make_win_src_distribution_old.sh Makefile.am, make_win_src_distribution_old.sh: Rename and put in note not to be used
* | | | | | Merge trift2.:/MySQL/M51/netware3-5.1joerg@trift2.2007-08-271-1/+1
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | / | | |_|_|/ | |/| | | into trift2.:/MySQL/M51/push-5.1
| * | | | More cleanup / fixing for NetWare:joerg@trift2.2007-08-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | 1) "test_db.sql" is a plaintext file, no binary; 2) do not try to strip the binaries, it will not work.
* | | | | Merge bk-internal.mysql.com:/home/bk/mysql-5.1monty@narttu.mysql.fi2007-08-141-33/+67
|\ \ \ \ \ | |_|_|_|/ |/| | | | | | | | | into mysql.com:/home/my/mysql-5.1
| * | | | Fixed a lot of compiler warnings and errors detected by Forte C++ on Solarismonty@mysql.com/nosik.monty.fi2007-08-131-8/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Faster thr_alarm() Added 'Opened_files' status variable to track calls to my_open() Don't give warnings when running mysql_install_db Added option --source-install to mysql_install_db I had to do the following renames() as used polymorphism didn't work with Forte compiler on 64 bit systems index_read() -> index_read_map() index_read_idx() -> index_read_idx_map() index_read_last() -> index_read_last_map()
* | | | | Merge mysql.com:/home/kent/bk/cmake-tls/mysql-5.0-build-newkent@kent-amd64.(none)2007-08-061-1/+7
|\ \ \ \ \ | | |_|/ / | |/| | | | | | | | into mysql.com:/home/kent/bk/cmake-tls/mysql-5.1-build-new
| * | | | make_win_bin_dist:kent@mysql.com/kent-amd64.(none)2007-08-061-2/+2
| | | | | | | | | | | | | | | | | | | | Corrected install path
| * | | | make_win_bin_dist:kent@mysql.com/kent-amd64.(none)2007-08-061-1/+7
| | | | | | | | | | | | | | | | | | | | Copy embedded .pdb and static debug lib
* | | | | Merge mysql.com:/home/kent/bk/cmake-tls/mysql-5.0-build-newkent@kent-amd64.(none)2007-08-031-1/+1
|\ \ \ \ \ | |/ / / / | | | | | | | | | | into mysql.com:/home/kent/bk/cmake-tls/mysql-5.1-build-new
| * | | | CMakeLists.txt, README, configure.jskent@mysql.com/kent-amd64.(none)2007-08-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Several adjustments to make client libraries pass the link test on both win32 and winx64, Visual Studio 2003 and 2005 (bug#30118)
| * | | | Merge jbruehe@bk-internal.mysql.com:/home/bk/mysql-5.0-buildjoerg@trift2.2007-08-021-55/+30
| |\ \ \ \ | | | | | | | | | | | | | | | | | | into trift2.:/MySQL/M50/push-5.0
| * \ \ \ \ Merge tsmith@bk-internal.mysql.com:/home/bk/mysql-5.0-buildtsmith@ramayana.hindu.god2007-08-011-14/+8
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | into ramayana.hindu.god:/home/tsmith/m/bk/maint/50
| | * \ \ \ \ Merge jperkin@bk-internal.mysql.com:/home/bk/mysql-5.0-maintjperkin@production.mysql.com2007-08-011-14/+8
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | into production.mysql.com:/usersnfs/jperkin/bk/mysql-5.0-maint
* | | \ \ \ \ \ Merge jbruehe@bk-internal.mysql.com:/home/bk/mysql-5.1-buildjoerg@trift2.2007-08-021-77/+54
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | into trift2.:/MySQL/M51/push-5.1
| * \ \ \ \ \ \ \ Merge mysql.com:/home/kent/bk/cmake-tls/mysql-5.0-buildkent@kent-amd64.(none)2007-08-021-75/+52
| |\ \ \ \ \ \ \ \ | | | |_|_|/ / / / | | |/| | | | | | | | | | | | | | | into mysql.com:/home/kent/bk/cmake-tls/mysql-5.1-build
| | * | | | | | | make_win_bin_dist:kent@mysql.com/kent-amd64.(none)2007-08-021-53/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Simplified copying of 'mysql-test' directory
| | * | | | | | | Merge kboortz@bk-internal.mysql.com:/home/bk/mysql-5.0-buildkent@kent-amd64.(none)2007-08-021-2/+2
| | |\ \ \ \ \ \ \ | | | |/ / / / / / | | |/| | | | | | | | | | | | | | | into mysql.com:/home/kent/bk/cmake-tls/mysql-5.0-build
| * | | | | | | | Merge mysql.com:/home/kent/bk/cmake-tls/mysql-5.0-buildkent@kent-amd64.(none)2007-08-021-2/+2
| |\ \ \ \ \ \ \ \ | | | |/ / / / / / | | |/| | | | | | | | | | | | | | | into mysql.com:/home/kent/bk/cmake-tls/mysql-5.1-build
| | * | | | | | | CMakeLists.txt (several), make_win_bin_dist:kent@mysql.com/kent-amd64.(none)2007-08-021-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Aligned client library build and use with the Unix version when it comes to what source to include directly in the builds, and what libraries to link with (bug#30118). Also reviewed, corrected and made more clear when static or dynamic Thread Local Storage is to be used. Some code duplication was removed, and some redundant library usage were removed, reducing the risk of incorrect TLS usage.
| * | | | | | | | Merge trift2.:/MySQL/M51/mysql-5.1joerg@trift2.2007-08-022-146/+201
| |\ \ \ \ \ \ \ \ | | |_|_|_|_|/ / / | |/| | | | | / / | | | |_|_|_|/ / | | |/| | | | | into trift2.:/MySQL/M51/push-5.1
* | | | | | | | Merge tsmith@bk-internal.mysql.com:/home/bk/mysql-5.1-buildtsmith@ramayana.hindu.god2007-08-012-146/+201
|\ \ \ \ \ \ \ \ | | |/ / / / / / | |/| | | | | | | | | | | | | | into ramayana.hindu.god:/home/tsmith/m/bk/maint/51
| * | | | | | | Merge mysql.com:/home/kent/bk/config_h/mysql-5.0-buildkent@kent-amd64.(none)2007-07-301-1/+1
| |\ \ \ \ \ \ \ | | | |_|/ / / / | | |/| | | | | | | | | | | | | into mysql.com:/home/kent/bk/config_h/mysql-5.1-build
| | * | | | | | Generate "config.h" directly into the "include" directory, later copiedkent@mysql.com/kent-amd64.(none)2007-07-301-1/+1
| | | |/ / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to "my_config.h". Not to pollute the top directory, and to get more control over what is included. Made the include path for "libedit" pick up its own "config.h" first.
| * | | | | | Merge production.mysql.com:/usersnfs/jperkin/bk/bug-28585-5.0jperkin@production.mysql.com2007-07-272-145/+200
| |\ \ \ \ \ \ | | |/ / / / / | | | | | | | | | | | | | | into production.mysql.com:/usersnfs/jperkin/bk/bug-28585-5.1