- 04 Jan, 2006 9 commits
-
-
unknown authored
sql/sql_class.cc: Needed to be able to compile without RBR
-
unknown authored
the bug is fixed. mysql-test/t/rpl_row_sp000.test: BUG#14931: Temporarily add synchronization to avoid sporadic failures until the bug is fixed. mysql-test/r/rpl_row_sp000.result: BUG#14931: Temporarily add synchronization to avoid sporadic failures until the bug is fixed. mysql-test/r/rpl_stm_sp.result: BUG#14931: Temporarily add synchronization to avoid sporadic failures until the bug is fixed. mysql-test/t/rpl_stm_sp.test: BUG#14931: Temporarily add synchronization to avoid sporadic failures until the bug is fixed.
-
unknown authored
-
unknown authored
into mysql.com:/home/bkroot/mysql-5.1-new
-
unknown authored
into mysql.com:/home/bk/b15924-mysql-5.1-new
-
unknown authored
into mysql.com:/home/bk/b15924-mysql-5.1-new sql/sql_class.cc: Auto merged mysql-test/t/disabled.def: Merge with mysql-5.1-new
-
unknown authored
into mysql.com:/home/bk/b15942-mysql-5.1-new sql/handler.cc: Auto merged
-
unknown authored
into mysql.com:/usr/local/mysql/mysql-5.1-new mysql-test/mysql-test-run.pl: Auto merged
-
unknown authored
-
- 03 Jan, 2006 4 commits
- 02 Jan, 2006 12 commits
-
-
unknown authored
into mysql.com:/home/bkroot/mysql-5.1-new
-
unknown authored
the mysqlslap lock directory to value of --tmpdir. mysql-test/mysql-test-run.pl: Set mysqlslap --lock-directory to avoid conflicts between parallel tests.
-
unknown authored
Test passes. Bug was probably fixed in the implementation of WL#2867. mysql-test/t/rpl_sp_effects.test: Removed check for statement-based replication.
-
unknown authored
apparently lost in merge. client/mysqlslap.c: Fix compile failure.
-
unknown authored
into zim.(none):/home/brian/mysql/slap-5.1
-
unknown authored
-
unknown authored
into zim.(none):/home/brian/mysql/slap-5.1 client/mysqlslap.c: Merge of comments change
-
unknown authored
Cleaned up memory allocation to be a little more staight forward (though I suspect someone will hate my sizeof() increment). Nothing really to see here. Updated comments in code. More comments are probably needed, but isn't that always the case? client/mysqlslap.c: Updated docs. Removed complicated malloc calls with a single malloc. Cleaned up the way statements were be free'd (aka its now a function instead of a bunch of copy/paste). Removed older and not so accurate timediff() call. Cleaned up call to parse out concurrency. mysql-test/t/mysqlslap.test: Edited the tests to make sure we check default concurrency (we can't test concurrency normally since in theory the results could be random). You will noticed that the result was not changed.
-
unknown authored
-
unknown authored
into zim.(none):/home/brian/mysql/slap-5.1 client/mysqlslap.c: Resolve conflict
-
unknown authored
Now does averaging when running iterations. Realligned a bunch of code and continued to remove global variables. Added CSV output along with printable. Structures are now provided for print options so adding XML, HTML, ... should now be trivial. client/client_priv.h: Simplified options client/mysqlslap.c: Giant cleanup. We now do single pass testing, not dual pass. The dual pass made no sense really especially when you started adding in more stats. Modified the testing loop so that it should not be possible to have both a fork() and thread version (which will make it easier to port to windows should someone want to). mysql-test/r/mysqlslap.result: New results mysql-test/t/mysqlslap.test: Adjusting for new options, and removed "archive" from the tests just in case archive is not compiled.
-
unknown authored
-
- 01 Jan, 2006 6 commits
-
-
unknown authored
into mysql.com:/usr/local/mysql/mysql-5.1-new
-
unknown authored
sql/sql_plugin.cc: Can't initialize char * from const char *, so add cast.
-
unknown authored
caused wrong permissions in "make dist". mysql-test/Makefile.am: *.sh files must use INSTALL_SCRIPT, not INSTALL_DATA.
-
unknown authored
include/my_bitmap.h: Protect incluce of my_pthread.h with #ifdef THREAD, to make it work in non-thread environment. sql/rpl_tblmap.h: Remove unused NO_TABLE enum which broke compilation on picky compilers (trying to put ULONG_MAX into an int...)
-
unknown authored
into mysql.com:/export/space/pekka/ndb/version/my51
-
unknown authored
storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp: set non-update pk pre data to UNDEFINED (previously unspecified) storage/ndb/src/kernel/blocks/dbtup/DbtupCommit.cpp: fix detached trigger opType storage/ndb/src/kernel/blocks/dbtup/DbtupTrigger.cpp: fix detached trigger opType storage/ndb/test/ndbapi/test_event_merge.cpp: exact verif post/pre data
-
- 31 Dec, 2005 5 commits
-
-
unknown authored
into serg.mylan:/usr/home/serg/Abk/mysql-5.1
-
unknown authored
MYSQL_STORAGE_ENGINE macro (and nowhere else)
-
unknown authored
which makes it possible to run RENAME TABLE on old tables when upgrading from 5.0. TODO: A stored procedure to rename all tables and databases with old name format into new format, it will simplify upgrade. sql_table.cc: Making old tables seen with "#mysql50#" prefix. Adding warning into .err log when an old name is found. sql_show.cc: Skip non-directories before filename_to_tablename call, to avoid unnecessary warnings. strfunc.cc: Adding "error" argument to strconvert() mysql_priv.h: Adding "error" agrument to strconvert() sql/mysql_priv.h: Adding "error" agrument to strconvert() sql/strfunc.cc: Adding "error" argument to strconvert() sql/sql_show.cc: Skip non-directories before filename_to_tablename call, to avoid warning. sql/sql_table.cc: Making old tables seen with "#mysql50#" prefix, which makes it possible to run RENAME TABLE on old tables. Adding warning into .err log when an old name is found.
-
unknown authored
into mysql.com:/usr/home/bar/mysql-5.1-new.fscs3 sql/mysqld.cc: Auto merged sql/table.cc: Auto merged
-
unknown authored
- Encoding itself, implemented as a charset "filename". Originally planned to use '.' as an escape character, but now changed to '@' for two reasons: "ls" does not return file names starting with '.' considering them as a kind of hidden files; some platforms do not allow several dots in a file name. - replacing many calls of my_snprintf() and strnxmov() to the new build_table_filename(). - Adding MY_APPEND_EXT mysys flag, to append an extention rather that replace it. - Replacing all numeric constants in fn_format flag arguments to their mysys definitions, e.g. MY_UNPACK_FILENAME, - Predictability in several function/methods: when a table name can appear with or withot .frm extension. Some functions/methods were changed so accept names strictly with .frm, other - strictly without .frm extensions. Several DBUG_ASSERTs were added to check whether an extension is passed. Many files: table name to file name encoding mysql_priv.h: Prototypes for new table name encoding tools. ctype-utf8.c: Implementing "filename" charset for table name to file name encoding. row0mysql.c: Fixing table name prefix. mf_format.c: Adding MY_APPEND_EXT processing. Many files: Fixing tests. my_sys.h: Adding new flag to append rather than replace an extension. m_ctype.h: Adding "filename" charset definition. include/m_ctype.h: Adding "filename" charset definition. include/my_sys.h: Adding new flag to append rather than replace an extension. mysql-test/t/alter_table.test: Fixing tests. mysql-test/t/create.test: Fixing tests. mysql-test/t/show_check.test: Fixing tests. mysql-test/r/alter_table.result: Fixing tests. mysql-test/r/create.result: Fixing tests. mysql-test/r/mysqldump.result: Fixing tests. mysys/mf_format.c: Adding MY_APPEND_EXT processing. sql/discover.cc: table name to file name encoding sql/ha_berkeley.cc: table name to file name encoding sql/ha_innodb.cc: table name to file name encoding sql/ha_myisam.cc: table name to file name encoding sql/ha_myisammrg.cc: table name to file name encoding sql/ha_ndbcluster.cc: table name to file name encoding sql/ha_partition.cc: table name to file name encoding sql/handler.cc: table name to file name encoding. sql/init.cc: table name to file name encoding sql/mysqld.cc: table name to file name encoding sql/parse_file.cc: table name to file name encoding sql/sql_acl.cc: table name to file name encoding sql/sql_base.cc: table name to file name encoding sql/sql_db.cc: table name to file name encoding sql/sql_delete.cc: table name to file name encoding sql/sql_rename.cc: table name to file name encoding sql/sql_show.cc: table name to file name encoding sql/sql_table.cc: table name to file name encoding sql/sql_trigger.cc: table name to file name encoding sql/sql_view.cc: table name to file name encoding sql/strfunc.cc: table name to file name encoding sql/table.cc: table name to file name encoding sql/unireg.cc: table name to file name encoding storage/innobase/row/row0mysql.c: Fixing table name prefix. , storage/myisam/mi_create.c: table name to file name encoding storage/myisam/mi_delete_table.c: table name to file name encoding storage/myisam/mi_open.c: table name to file name encoding storage/myisam/mi_rename.c: table name to file name encoding strings/ctype-utf8.c: Implementing "filename" charset for table name to file name encoding. sql/mysql_priv.h: Prototypes for new table name encoding tools. storage/myisammrg/myrg_create.c: table name to file name encoding storage/myisammrg/myrg_open.c: table name to file name encoding
-
- 30 Dec, 2005 4 commits
-
-
unknown authored
BUILD/compile-amd64-debug-max-no-ndb: New no-ndb amd64 build script.
-
unknown authored
into april.(none):/home/svoj/devel/mysql/mysql-5.1-new
-
unknown authored
into april.(none):/home/svoj/devel/mysql/mysql-5.1-new sql/mysqld.cc: Auto merged
-
unknown authored
t4 was not dropped, which made the "backup" test fail if one of the previous tests using t4 (e.g. "archive") failed. mysql-test/t/backup.test: t4 was not dropped. mysql-test/r/backup.result: t4 was not dropped.
-