summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* - Improved portability of the sql-bench Perl scripts by replacingunknown2003-09-2521-56/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the calls of external programs "uname" and "pwd" with Perl builtin functions "cwd()" and "POSIX::uname()" sql-bench/as3ap.sh: - portability fix: don't call external "pwd" command, use the "cwd()" builtin function instead. sql-bench/bench-count-distinct.sh: - portability fix: don't call external "pwd" command, use the "cwd()" builtin function instead. sql-bench/bench-init.pl.sh: - portability fix: don't call external "pwd" command, use the "cwd()" builtin function instead. - portability fix: don't call external "uname" in various combinations, use POSIX::uname() instead. sql-bench/copy-db.sh: - portability fix: don't call external "pwd" command, use the "cwd()" builtin function instead. sql-bench/crash-me.sh: - portability fix: don't call external "pwd" command, use the "cwd()" builtin function instead. - portability fix: don't call external "uname" in various combinations, use POSIX::uname() instead. sql-bench/innotest1.sh: - portability fix: don't call external "pwd" command, use the "cwd()" builtin function instead. sql-bench/innotest1a.sh: - portability fix: don't call external "pwd" command, use the "cwd()" builtin function instead. sql-bench/innotest1b.sh: - portability fix: don't call external "pwd" command, use the "cwd()" builtin function instead. sql-bench/innotest2.sh: - portability fix: don't call external "pwd" command, use the "cwd()" builtin function instead. sql-bench/innotest2a.sh: - portability fix: don't call external "pwd" command, use the "cwd()" builtin function instead. sql-bench/innotest2b.sh: - portability fix: don't call external "pwd" command, use the "cwd()" builtin function instead. sql-bench/run-all-tests.sh: - portability fix: don't call external "pwd" command, use the "cwd()" builtin function instead. sql-bench/test-ATIS.sh: - portability fix: don't call external "pwd" command, use the "cwd()" builtin function instead. sql-bench/test-alter-table.sh: - portability fix: don't call external "pwd" command, use the "cwd()" builtin function instead. sql-bench/test-big-tables.sh: - portability fix: don't call external "pwd" command, use the "cwd()" builtin function instead. sql-bench/test-connect.sh: - portability fix: don't call external "pwd" command, use the "cwd()" builtin function instead. sql-bench/test-create.sh: - portability fix: don't call external "pwd" command, use the "cwd()" builtin function instead. sql-bench/test-insert.sh: - portability fix: don't call external "pwd" command, use the "cwd()" builtin function instead. sql-bench/test-select.sh: - portability fix: don't call external "pwd" command, use the "cwd()" builtin function instead. sql-bench/test-transactions.sh: - portability fix: don't call external "pwd" command, use the "cwd()" builtin function instead. sql-bench/test-wisconsin.sh: - portability fix: don't call external "pwd" command, use the "cwd()" builtin function instead.
* a small comment about why we call end_io_cache in mysql_loadunknown2003-09-251-0/+5
| | | | | sql/sql_load.cc: small comment
* Merge gbichot@bk-internal.mysql.com:/home/bk/mysql-4.0unknown2003-09-254-17/+52
|\ | | | | | | | | | | into mysql.com:/home/mysql_src/mysql-4.0
| * Fix for BUG#1391:unknown2003-09-254-17/+52
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | "If LOAD DATA INFILE 'small_file' fails on master, slave leaves temp files" (the bug is in the master) mysql-test/r/rpl_loaddata.result: result update mysql-test/std_data/rpl_loaddata2.dat: change to introduce a unique key violation mysql-test/t/rpl_loaddata.test: testcase for bug#1391. sql/sql_load.cc: fix for bug#1391: for a small file, we had in the binlog only the Create_file, not the Delete_file (the Create_file was written when the READ_INFO was destroyed).
* | Merge bk-internal.mysql.com:/home/bk/mysql-4.0unknown2003-09-251-7/+19
|\ \ | |/ |/| | | | | | | | | | | into mysql.com:/home/dlenev/src/mysql-4.0-bgrn sql/log_event.cc: Auto merged
| * Fixed BUG#1357 MySQL too eagerly cleanups temporary files for LOAD DATA ↵unknown2003-09-251-7/+19
| | | | | | | | | | | | | | (SQL_LOAD-...) sql/log_event.cc: Now cleaning up only our files during processing of Start_log_event
* | Merge gbichot@bk-internal.mysql.com:/home/bk/mysql-4.0unknown2003-09-242-1/+11
|\ \ | | | | | | | | | | | | | | | into mysql.com:/home/mysql_src/mysql-4.0
| * | Fix forunknown2003-09-242-1/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug #1392 "On Win, slave leaves one temp file after successf. replicating LOAD DATA INFILE" Windows-specific bug (we forgot to close a file before deleting it). Patch written by me, tested by Miguel (thanks!) and it works. sql/log.cc: changed the comment to mean the truth sql/log_event.cc: When you finish replicating LOAD DATA INFILE, close the SQL_LOADxxx.data file before deleting it, or Windows will refuse to delete. No need to do the same thing for the SQL_LOADxxx.data file, it's not opened at this moment.
* | | Merge rkalimullin@bk-internal.mysql.com:/home/bk/mysql-4.0unknown2003-09-242-2/+4
|\ \ \ | | | | | | | | | | | | | | | | | | | | into gw.mysql.r18.ru:/usr/home/ram/work/4.0
| * \ \ Merge bk-internal.mysql.com:/home/bk/mysql-4.0unknown2003-09-242-2/+4
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | into narttu.mysql.fi:/my/mysql-4.0
| | * | | Correct fix for buffer overruns for compressed blobs.unknown2003-09-242-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (Bugs #770, #1304 and maybe #1295)
* | | | | Added MYSQL_BINLOG variable.unknown2003-09-241-0/+7
| | | | |
* | | | | #1169: Add --exec command to mysqltestunknown2003-09-244-0/+100
|/ / / /
* | | | A fix. Please never use 'ulong' here!unknown2003-09-242-1/+2
| | | | | | | | | | | | | | | | | | | | BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted
* | | | Merge script with 4.1unknown2003-09-242-72/+51
|/ / / | | | | | | | | | | | | | | | | | | scripts/mysql_fix_privilege_tables.sql: Merge with 4.1 BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted
* | | Code cleanup of new patchesunknown2003-09-233-82/+93
| | | | | | | | | | | | | | | mysys/mf_dirname.c: Added comments
* | | Merge bk-internal.mysql.com:/home/bk/mysql-4.0unknown2003-09-2317-96/+134
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | into narttu.mysql.fi:/my/mysql-4.0 extra/comp_err.c: Auto merged
| * | Merge bk-internal.mysql.com:/home/bk/mysql-4.0unknown2003-09-204-23/+33
| |\ \ | | | | | | | | | | | | | | | | | | | | into mysql.com:/home/dlenev/src/mysql-4.0-opssl
| | * | Replaced deprecated since OpenSSL 0.9.7 des_ calls and types with unknown2003-09-124-23/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | their newer DES_ versions. Provided macros for backward compatibility. include/my_global.h: Added macros for DES_ OpenSSL functions for compatibility with pre 0.9.7 sql/des_key_file.cc: Replaced deprecated OpenSSL des_ calls and types with newer sql/item_strfunc.cc: Replaced deprecated OpenSSL des_ calls and types with newer sql/mysql_priv.h: Replaced deprecated OpenSSL des_ types with newer
| * | | Merge gbichot@bk-internal.mysql.com:/home/bk/mysql-4.0unknown2003-09-192-20/+10
| |\ \ \ | | |_|/ | |/| | | | | | | | | | | | | | into mysql.com:/home/mysql_src/mysql-4.0
| | * | removing my chmods so that the test can be run on non-Unix platformsunknown2003-09-192-20/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (kind request from the Novell team). Note that old chmods in rpl_rotate_logs remain. mysql-test/r/rpl000009.result: result update mysql-test/t/rpl000009.test: removing my chmods so that the test can be run on non-Unix platforms.
| * | | Merge bk-internal.mysql.com:/home/bk/mysql-4.0unknown2003-09-194-7/+7
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | into mysql.com:/home/dlenev/src/mysql-4.0-bg-1340
| | * | | - fixed several typos ("uppdate"->"update" and "tryed"->"tried")unknown2003-09-194-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | extra/comp_err.c: - fixed typo: "uppdate" -> "update" heap/hp_test2.c: - fixed typo: "uppdate" -> "update" - fixed typo: "tryed" -> "tryed" isam/test2.c: - fixed typo: "uppdate" -> "update" - fixed typo: "tryed" -> "tryed" myisam/mi_test2.c: - fixed typo: "uppdate" -> "update" - fixed typo: "tryed" -> "tryed"
| * | | | Bugfix for bug #1340, style fix before pushunknown2003-09-191-4/+2
| | | | | | | | | | | | | | | | | | | | | | | | | client/mysqlbinlog.cc: Small fix to avoid double initialization
| * | | | Merge bk-internal.mysql.com:/home/bk/mysql-4.0unknown2003-09-191-7/+10
| |\ \ \ \ | | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | into mysql.com:/home/dlenev/src/mysql-4.0-bg-1340 client/mysqlbinlog.cc: Auto merged
| | * | | Fix for bug #1340 (More careful checks if we met proper ↵unknown2003-09-191-7/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Create_file_log_event before Append or Exec event we are processing now) client/mysqlbinlog.cc: More accurate checks if Create_file_log_event is absent for this Append or Exec event...
| * | | | Merge eagle.mysql.r18.ru:/home/vva/work/mysql.orig/clear/mysql-4.0unknown2003-09-191-2/+18
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into eagle.mysql.r18.ru:/home/vva/work/BUG_1073/mysql-4.0 client/mysqlbinlog.cc: Auto merged
| | * | | | fixed bug #1073 unknown2003-09-011-2/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (Replication LOAD DATA INFILE mysqlbinlog doesn't cleanup tmp files)
| * | | | | - force the removal of /var/lock/subsys/mysql on MySQL shutdownunknown2003-09-171-1/+1
| | | | | |
| * | | | | Fixed Bug#1291, client displays wrong prompt when in the middle ofunknown2003-09-171-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | backticks.
| * | | | | Merge bk-internal.mysql.com:/home/bk/mysql-4.0unknown2003-09-171-0/+8
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into rhols221.adsl.netsonic.fi:/home/my/bk/mysql-4.0
| | * | | | | Fixed a bug in default.c, which caused quoted arguments notunknown2003-09-171-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | being read correctly from my.cnf.
| * | | | | | Applied Monty corrections to the FULL SCANunknown2003-09-173-32/+43
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | optimiser bug patch. mysql-test/r/distinct.result: test results reverted mysql-test/r/order_by.result: test results reverted sql/sql_select.cc: found_constrain renamed to found_constraint We don't perform full cartesian product in case when JOIN BUFFER is used: it was taken into account. s->read_time may contain range index read time, so to get full table scan time is necessary to call s->table->file->scan_time().
| * | | | | Merge kosipov@bk-internal.mysql.com:/home/bk/mysql-4.0unknown2003-09-171-2/+2
| |\ \ \ \ \ | | |_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | into oak.local:/home/kostja/mysql/mysql-4.0-root
| | * | | | fixed test result to be in sync with the optimiserunknown2003-09-171-2/+2
| | | | | |
* | | | | | Block SIGPIPE also for not threaded client programs.unknown2003-09-2314-28/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added --include and --libs_r options to mysql_config. Added mysql_get_client_version() to client library Fixed some minor benchmark issues acinclude.m4: Fixed that 'no' is printed if openssl not used configure.in: Fixed error message extra/comp_err.c: Skip lines before first { include/mysql.h: Indentation cleanup libmysql/libmysql.c: Block SIGPIPE also for not threaded programs. This is now done once in mysql_server_init() and not for every call to mysql_init(). Added mysql_get_client_version() libmysql/libmysql.def: added mysql_get_client_version scripts/Makefile.am: Add openssl libraries to mysql_config scripts/mysql_config.sh: Added options --include and --libs_r Added C compiler options to 'cflags' scripts/mysql_install_db.sh: Fixed tests with IN_RPM to not give warnings sql-bench/bench-init.pl.sh: Updated version number sql-bench/server-cfg.sh: Remove duplicate line sql-bench/test-alter-table.sh: Increase loops for more relevant test sql-bench/test-select.sh: Fix wrong test for count_distinct_2 tests/mail_to_db.pl: Default db and table for easier usage
* | | | | | Merge bk-internal.mysql.com:/home/bk/mysql-4.0unknown2003-09-172-12/+41
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | into narttu.mysql.fi:/my/mysql-4.0
| * | | | | More explicit error messages from myisamchkunknown2003-09-162-12/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | myisam/mi_check.c: More explicit error messages myisam/mi_dynrec.c: More comments
* | | | | | Merge lgrimmer@build.mysql.com:/home/bk/mysql-4.0unknown2003-09-1663-5029/+195
|\ \ \ \ \ \ | | |/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | into mysql.com:/space/my/mysql-4.0
| * | | | | Merge oak.local:/home/kostja/mysql/mysql-4.0-rootunknown2003-09-162-1221/+6
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into oak.local:/home/kostja/mysql/mysql-4.0-rightnow
| | * | | | | select.test cleanupunknown2003-09-162-1221/+6
| | |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mysql-test/r/select.result: unnecessary info removed from result mysql-test/t/select.test: unnecessary info don't get into result any more
| * | | | | comment made more explanatoryunknown2003-09-161-5/+7
| | | | | |
| * | | | | join buffer cache usage/not usage is takenunknown2003-09-161-4/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into account to increase the cost of FULL SCAN sql/sql_select.cc: more accurate FULL SCAN cost estimation: join buffer cache usage/not usage is taken into account to increase the cost
| * | | | | Merge oak.local:/home/kostja/mysql/mysql-4.0-rootunknown2003-09-1657-3780/+151
| |\ \ \ \ \ | | |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | into oak.local:/home/kostja/mysql/mysql-4.0-rightnow
| | * | | | Merge gweir@build.mysql.com:/home/bk/mysql-4.0unknown2003-09-1557-3780/+151
| | |\ \ \ \ | | | |_|_|/ | | |/| | | | | | | | | | | | | | | | | | | | | into mysql.com:/home/greg/bk/4.0
| | | * | | Remove 3.23 InstallShield files, improve make_win_src_distribution, add ↵unknown2003-09-1557-3780/+151
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | extra myTest.dsp to be copied into distributions as a fix for BUG#999 BitKeeper/deleted/.del-.fgl~c7d07ad3164a2b48: Delete: VC++Files/InstallShield/3.23.XX-gpl/Component Definitions/.fgl BitKeeper/deleted/.del-Clients and Tools.fgl~cfedc4432bdca9d: Delete: VC++Files/InstallShield/3.23.XX-gpl/File Groups/Clients and Tools.fgl BitKeeper/deleted/.del-Default.cdf~aa4045acaf293d36: Delete: VC++Files/InstallShield/3.23.XX-gpl/Component Definitions/Default.cdf BitKeeper/deleted/.del-Default.fdf~89b2af9ae5059f62: Delete: VC++Files/InstallShield/3.23.XX-gpl/File Groups/Default.fdf BitKeeper/deleted/.del-Default.fgl~46b97f4278325e8: Delete: VC++Files/InstallShield/3.23.XX-gpl/File Groups/Default.fgl BitKeeper/deleted/.del-Default.fgl~b9558db492415763: Delete: VC++Files/InstallShield/3.23.XX-gpl/Component Definitions/Default.fgl BitKeeper/deleted/.del-Development.fgl~8207e98594fe0bee: Delete: VC++Files/InstallShield/3.23.XX-gpl/File Groups/Development.fgl BitKeeper/deleted/.del-Documentation.fgl~dbd86cfa42705734: Delete: VC++Files/InstallShield/3.23.XX-gpl/File Groups/Documentation.fgl BitKeeper/deleted/.del-Grant Tables.fgl~1c366d3557e024bf: Delete: VC++Files/InstallShield/3.23.XX-gpl/File Groups/Grant Tables.fgl BitKeeper/deleted/.del-Default.rge~d816fd8cef3f06d5: Delete: VC++Files/InstallShield/3.23.XX-gpl/Registry Entries/Default.rge BitKeeper/deleted/.del-MySQL 3.23.XX-GPL.ipr~3116ab4aa52a6b44: Delete: VC++Files/InstallShield/3.23.XX-gpl/MySQL 3.23.XX-GPL.ipr BitKeeper/deleted/.del-Servers.fgl~c809b9515fd51041: Delete: VC++Files/InstallShield/3.23.XX-gpl/File Groups/Servers.fgl BitKeeper/deleted/.del-Setup.dbg~f8ba4a87c5dd90a9: Delete: VC++Files/InstallShield/3.23.XX-gpl/Script Files/Setup.dbg BitKeeper/deleted/.del-Setup.ino~cb1fefacb45841a: Delete: VC++Files/InstallShield/3.23.XX-gpl/Script Files/Setup.ino BitKeeper/deleted/.del-Setup.ins~6946c5065a12572d: Delete: VC++Files/InstallShield/3.23.XX-gpl/Script Files/Setup.ins BitKeeper/deleted/.del-Setup.obs~33bf58c825ff3ac8: Delete: VC++Files/InstallShield/3.23.XX-gpl/Script Files/Setup.obs BitKeeper/deleted/.del-Setup.rul~8cc4dee41dcb733f: Delete: VC++Files/InstallShield/3.23.XX-gpl/Script Files/Setup.rul BitKeeper/deleted/.del-Build.tsb~43a1c0d54abb5a44: Delete: VC++Files/InstallShield/3.23.XX-gpl/Text Substitutions/Build.tsb BitKeeper/deleted/.del-Default.shl~4bc5f71f8f0bd822: Delete: VC++Files/InstallShield/3.23.XX-gpl/Shell Objects/Default.shl BitKeeper/deleted/.del-Default.shl~8b61f648197f5de3: Delete: VC++Files/InstallShield/3.23.XX-gpl/String Tables/Default.shl BitKeeper/deleted/.del-SETUP.BMP~1e85725234603bfe: Delete: VC++Files/InstallShield/3.23.XX-gpl/Setup Files/Uncompressed Files/Language Independent/OS Independent/SETUP.BMP BitKeeper/deleted/.del-Setup.tsb~5344bdc39c0e9884: Delete: VC++Files/InstallShield/3.23.XX-gpl/Text Substitutions/Setup.tsb BitKeeper/deleted/.del-infolist.txt~58b203247936d266: Delete: VC++Files/InstallShield/3.23.XX-gpl/Setup Files/Compressed Files/Language Independent/OS Independent/infolist.txt BitKeeper/deleted/.del-value.shl~98c2851db96b919e: Delete: VC++Files/InstallShield/3.23.XX-gpl/String Tables/0009-English/value.shl BitKeeper/deleted/.del-.fgl~cac6624e1ac6ee1d: Delete: VC++Files/InstallShield/3.23.XXcom/Component Definitions/.fgl BitKeeper/deleted/.del-Clients and Tools.fgl~826a8e3f651af365: Delete: VC++Files/InstallShield/3.23.XXcom/File Groups/Clients and Tools.fgl BitKeeper/deleted/.del-Default.cdf~1da6505528200d5e: Delete: VC++Files/InstallShield/3.23.XXcom/Component Definitions/Default.cdf BitKeeper/deleted/.del-Default.fdf~466762fdf65e1477: Delete: VC++Files/InstallShield/3.23.XXcom/File Groups/Default.fdf BitKeeper/deleted/.del-Default.fgl~45b9e847fa4da131: Delete: VC++Files/InstallShield/3.23.XXcom/Component Definitions/Default.fgl BitKeeper/deleted/.del-Default.fgl~a86ce70180b5aba4: Delete: VC++Files/InstallShield/3.23.XXcom/File Groups/Default.fgl BitKeeper/deleted/.del-Development.fgl~ca1458874a3fef81: Delete: VC++Files/InstallShield/3.23.XXcom/File Groups/Development.fgl BitKeeper/deleted/.del-Default.rge~2218627c2a901409: Delete: VC++Files/InstallShield/3.23.XXcom/Registry Entries/Default.rge BitKeeper/deleted/.del-Documentation.fgl~cf0ac866737a5c7d: Delete: VC++Files/InstallShield/3.23.XXcom/File Groups/Documentation.fgl BitKeeper/deleted/.del-Grant Tables.fgl~31e527d126c42d90: Delete: VC++Files/InstallShield/3.23.XXcom/File Groups/Grant Tables.fgl BitKeeper/deleted/.del-MySQL 3.23.com.ipr~eb817edea43c6e6e: Delete: VC++Files/InstallShield/3.23.XXcom/MySQL 3.23.com.ipr BitKeeper/deleted/.del-Servers.fgl~36147accb82f759: Delete: VC++Files/InstallShield/3.23.XXcom/File Groups/Servers.fgl BitKeeper/deleted/.del-Setup.dbg~688e9d3ec362ec34: Delete: VC++Files/InstallShield/3.23.XXcom/Script Files/Setup.dbg BitKeeper/deleted/.del-Setup.ino~85f07a856a69a722: Delete: VC++Files/InstallShield/3.23.XXcom/Script Files/Setup.ino BitKeeper/deleted/.del-Default.shl~a02a9093c2b6b0d9: Delete: VC++Files/InstallShield/3.23.XXcom/Shell Objects/Default.shl BitKeeper/deleted/.del-SETUP.BMP~77e20d86bceb4903: Delete: VC++Files/InstallShield/3.23.XXcom/Setup Files/Uncompressed Files/Language Independent/OS Independent/SETUP.BMP BitKeeper/deleted/.del-Setup.ins~ab68efc133d8411e: Delete: VC++Files/InstallShield/3.23.XXcom/Script Files/Setup.ins BitKeeper/deleted/.del-Setup.obs~2f09140119879bc6: Delete: VC++Files/InstallShield/3.23.XXcom/Script Files/Setup.obs BitKeeper/deleted/.del-Setup.rul~14510a994d515f19: Delete: VC++Files/InstallShield/3.23.XXcom/Script Files/Setup.rul BitKeeper/deleted/.del-infolist.txt~ee370f4771c83a97: Delete: VC++Files/InstallShield/3.23.XXcom/Setup Files/Compressed Files/Language Independent/OS Independent/infolist.txt BitKeeper/deleted/.del-Build.tsb~f3be7d512e6d5b74: Delete: VC++Files/InstallShield/3.23.XXcom/Text Substitutions/Build.tsb BitKeeper/deleted/.del-Default.shl~e18d3f10bef97a28: Delete: VC++Files/InstallShield/3.23.XXcom/String Tables/Default.shl BitKeeper/deleted/.del-Setup.tsb~e74dbc7688d4019a: Delete: VC++Files/InstallShield/3.23.XXcom/Text Substitutions/Setup.tsb BitKeeper/deleted/.del-value.shl~718b5b291d5ff04d: Delete: VC++Files/InstallShield/3.23.XXcom/String Tables/0009-English/value.shl BitKeeper/etc/ignore: Added hardcopy.0 to the ignore list VC++Files/InstallShield/4.0.XX-classic/Setup Files/Compressed Files/Language Independent/OS Independent/infolist.txt: Add VERSION tags for automation VC++Files/InstallShield/4.0.XX-classic/String Tables/0009-English/value.shl: Add VERSION tags for automation VC++Files/InstallShield/4.0.XX-gpl/Setup Files/Compressed Files/Language Independent/OS Independent/infolist.txt: Add VERSION tags for automation VC++Files/InstallShield/4.0.XX-gpl/String Tables/0009-English/value.shl: Add VERSION tags for automation VC++Files/InstallShield/4.0.XX-pro/Setup Files/Compressed Files/Language Independent/OS Independent/infolist.txt: Add VERSION tags for automation VC++Files/InstallShield/4.0.XX-pro/String Tables/0009-English/value.shl: Add VERSION tags for automation scripts/make_win_src_distribution.sh: Improved unix to DOS conversion, add processing of version tags in InstallShield files
| * | | | | Fixed bug in the optimiser for FULL TABLE SCAN case:unknown2003-09-154-29/+27
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to estimate correctly cost of full table scan we should take into account rows read and skipped on each iteration. mysql-test/r/distinct.result: Fixed test suite: now full scan is used less often mysql-test/r/join_outer.result: Fixed test suite: now full scan is used less often mysql-test/r/select_safe.result: Fixed test suite: now full scan is used less often
* | | | | Merge mysql.com:/space/my/mysql-4.0unknown2003-09-154-53/+53
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | | | | | | into mysql.com:/space/my/mysql-4.0-build
| * | | | Regenerated expired CA certificate and signed dependant certificatesunknown2003-09-123-51/+51
| | |_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | SSL/cacert.pem: Regenerated expired CA certificate SSL/client-cert.pem: Signed client certificate after regenerating CA certificate SSL/server-cert.pem: Signed server certificate after regenerating CA certificate
| * | | Merge gbichot@bk-internal.mysql.com:/home/bk/mysql-4.0unknown2003-09-121-2/+2
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | into mysql.com:/home/mysql_src/mysql-4.0