- 28 Nov, 2006 22 commits
-
-
unknown authored
into neptunus.(none):/home/msvensson/mysql/work/my51-work mysql-test/mysql-test-run.pl: Auto merged
-
unknown authored
into neptunus.(none):/home/msvensson/mysql/work/my50-work mysql-test/mysql-test-run.pl: Auto merged
-
unknown authored
in all cuurently known log files
-
unknown authored
-
unknown authored
into neptunus.(none):/home/msvensson/mysql/work/my51-work BitKeeper/etc/ignore: auto-union client/mysql.cc: Auto merged mysql-test/lib/mtr_process.pl: Auto merged mysql-test/lib/mtr_report.pl: Auto merged mysql-test/mysql-test-run.pl: Auto merged mysql-test/r/func_misc.result: Auto merged mysql-test/r/mysql.result: Auto merged mysql-test/t/mysql.test: Auto merged sql/item_func.h: Auto merged sql/item_timefunc.cc: Auto merged mysql-test/r/rpl_000015.result: Auto merged mysql-test/t/rpl_000015.test: Auto merged sql-common/my_time.c: Auto merged sql/sql_parse.cc: Auto merged
-
unknown authored
into neptunus.(none):/home/msvensson/mysql/work/my50-work mysql-test/mysql-test-run.pl: Auto merged
-
unknown authored
After that it will by default use log tables. That setting can be overruled by adding a -master.opt file like mysql_client_test has.
-
unknown authored
-
unknown authored
into neptunus.(none):/home/msvensson/mysql/work/my50-work mysql-test/mysql-test-run.pl: Auto merged
-
unknown authored
-
unknown authored
into neptunus.(none):/home/msvensson/mysql/work/my50-work mysql-test/mysql-test-run.pl: Auto merged
-
unknown authored
-
unknown authored
if that is same as opt_mem it can be removed
-
unknown authored
with the function where vardir's are created
-
unknown authored
into neptunus.(none):/home/msvensson/mysql/work/my50-work mysql-test/mysql-test-run.pl: Auto merged
-
unknown authored
- Better control of when to create/remove vardir mysql-test/mysql-test-run.pl: Split the part the function cleanup_stale_files in two parts - one that removes any old var directories - one that setup var in te proper location If running against extern server and no vardir has been created in the specified location, run the latter function to create the vardir structure. Else print message saying the vardir already exists and continue.
-
unknown authored
into neptunus.(none):/home/msvensson/mysql/work/my50-work mysql-test/lib/mtr_process.pl: Auto merged mysql-test/mysql-test-run.pl: Auto merged mysql-test/lib/mtr_report.pl: Auto merged
-
unknown authored
And if var/ has been created, it will be recreated later so the logs from "mtr_kill_leftovers" will be lost anyway mysql-test/mysql-test-run.pl: Don't create vardir before mtr_kill_leftovers mysql-test/lib/mtr_process.pl: Send output - if any - from mysqladmin to stdout/stderr. There shouldn't be any such errors and if any occur, it's good to know about them.
-
unknown authored
mysql-test/lib/mtr_report.pl: Don't output "skipped" comment if there is none (bug#24471) mysql-test/mysql-test-run.pl: Removed "use diagnostics", reduces Perl speed significantly. Can be enabled with "perl -Mdiagnostics mysql-test-run.pl".
-
unknown authored
into neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint mysql-test/mysql-test-run.pl: Auto merged
-
unknown authored
into mysql.com:/usr/home/ram/work/bug21587/my51-bug21587 sql/mysql_priv.h: Auto merged
-
unknown authored
into mysql.com:/usr/home/ram/work/bug21587/my51-bug21587 sql/mysql_priv.h: Auto merged sql/sql_handler.cc: Auto merged sql/sql_base.cc: merging
-
- 27 Nov, 2006 10 commits
-
-
unknown authored
-
unknown authored
into shakedown.(none):/home/jpipes/dev/mysql-5.0-maint BitKeeper/etc/ignore: auto-union client/mysql.cc: Auto merged mysql-test/r/func_misc.result: Auto merged sql/item_func.h: Auto merged mysql-test/r/mysql.result: Manual merge mysql-test/t/mysql.test: Manual merge
-
unknown authored
into shakedown.(none):/home/jpipes/dev/mysql-5.1-new-maint2 BitKeeper/etc/ignore: auto-union client/mysql.cc: Auto merged mysql-test/r/func_misc.result: Auto merged mysql-test/r/mysql.result: Manually merged mysql-test/t/mysql.test: Manually merged sql/item_func.h: Manually merged
-
unknown authored
master_port after a "change master" will be set to the compiled in default value i.e not always the same as what the master report as it's port number. mysql-test/mysql-test-run.pl: Read the master-port value from the mysqld. Used for replacing the default compiled in port number in for example rpl000015 mysql-test/r/rpl000015.result: Update result file mysql-test/t/rpl000015.test: When changing master without specifying master port, the port for master will be set to the compiled in default. Replace with that value
-
unknown authored
-
unknown authored
Don't link mysql_upgrade with mysys
-
unknown authored
-
unknown authored
into neptunus.(none):/home/msvensson/mysql/mysql-5.1-new-maint BitKeeper/deleted/.del-CMakeLists.txt~14: Auto merged BitKeeper/deleted/.del-CMakeLists.txt~7: Auto merged client/mysql_upgrade.c: Auto merged mysql-test/Makefile.am: Auto merged mysql-test/mysql-test-run-shell.sh: Auto merged mysql-test/mysql-test-run.pl: Auto merged mysql-test/r/func_time.result: Auto merged mysql-test/t/func_time.test: Auto merged mysys/Makefile.am: Auto merged mysys/my_mmap.c: Auto merged sql-common/my_time.c: Auto merged sql/item_timefunc.cc: Auto merged sql/udf_example.c: Auto merged support-files/mysql.spec.sh: Use local client/Makefile.am: Manual merge include/my_sys.h: Manual merge
-
unknown authored
into neptunus.(none):/home/msvensson/mysql/mysql-5.1-new-maint mysql-test/mysql-test-run.pl: Auto merged sql-common/my_time.c: Auto merged sql/item_timefunc.cc: Auto merged sql/sql_parse.cc: Auto merged
-
unknown authored
Problems (appear only under some circumstances): 1. we get a reference to a deleted table searching in the thd->handler_tables_hash in the mysql_ha_read(). 2. DBUG_ASSERT(table->file->inited == handler::NONE); assert fails in the close_thread_table(). Fix: end open index scans and table scans and remove references to the tables from the handler tables hash. After this preparation it is safe to close the tables. The close can no longer fail on open index/table scans and the closed table will not be used again by handler functions. sql/mysql_priv.h: Fix for bug #21587: FLUSH TABLES causes server crash when used with HANDLER statements - mysql_ha_mark_tables_for_reopen() introduced. sql/sql_base.cc: Fix for bug #21587: FLUSH TABLES causes server crash when used with HANDLER statements - call mysql_ha_mark_tables_for_reopen() to prepare for the following close. sql/sql_handler.cc: Fix for bug #21587: FLUSH TABLES causes server crash when used with HANDLER statements - mysql_ha_mark_tables_for_reopen() function introduced.
-
- 24 Nov, 2006 7 commits
-
-
unknown authored
into polly.local:/home/kaa/src/maint/mysql-5.1-maint sql/sql_parse.cc: Auto merged
-
unknown authored
into polly.local:/home/kaa/src/maint/mysql-5.0-maint sql/sql_parse.cc: Auto merged
-
unknown authored
into polly.local:/tmp/maint/bug22077/my51-bug22077 mysql-test/t/read_only.test: Auto merged sql/sql_parse.cc: Manual merge
-
unknown authored
into ymer.(none):/usr/local/mysql/tmp/mysql-5.0-gca mysql-test/mysql-test-run.pl: Auto merged sql-common/my_time.c: Auto merged sql/item_timefunc.cc: Auto merged
-
unknown authored
into ymer.(none):/usr/local/mysql/tmp/mysql-5.1-new-maint mysql-test/lib/mtr_io.pl: Auto merged mysql-test/mysql-test-run.pl: Auto merged mysql-test/r/date_formats.result: Auto merged mysql-test/t/date_formats.test: Auto merged sql-common/my_time.c: Auto merged sql/item_timefunc.cc: Auto merged
-
unknown authored
into ymer.(none):/usr/local/mysql/tmp/mysql-5.0-gca mysql-test/lib/mtr_io.pl: Auto merged mysql-test/mysql-test-run.pl: Auto merged mysql-test/r/date_formats.result: Auto merged mysql-test/t/date_formats.test: Auto merged sql-common/my_time.c: Auto merged sql/item_timefunc.cc: Auto merged
-
unknown authored
traces in Valgrind (broken libc6-dbg). Installing libc6-dbg on Debian will still provide proper bactraces, even without setting LD_LIBRARY_PATH explicitly. mysql-test/lib/mtr_io.pl: Do not link /usr/lib/debug/* on Debian <=3.1, as it causes broken stack traces in Valgrind. mysql-test/mysql-test-run.pl: Do not link /usr/lib/debug/* on Debian <=3.1, as it causes broken stack traces in Valgrind.
-
- 23 Nov, 2006 1 commit
-
-
unknown authored
since that is where the lang files etc are
-