- 18 Jan, 2007 6 commits
-
-
unknown authored
into mysql.com:/usr/home/ram/work/bug22533/my51-bug22533 mysql-test/r/select.result: Auto merged mysql-test/r/type_bit.result: Auto merged mysql-test/t/select.test: Auto merged sql/field.cc: Auto merged sql/item.cc: Auto merged
-
unknown authored
into mysql.com:/usr/home/ram/work/bug22533/my51-bug22533 mysql-test/r/range.result: Auto merged mysql-test/r/type_bit.result: Auto merged mysql-test/r/type_bit_innodb.result: Auto merged sql/field.cc: Auto merged
-
unknown authored
-
unknown authored
into mysql.com:/usr/home/ram/work/bug22533/my51-bug22533 mysql-test/t/range.test: Auto merged sql/item.cc: Auto merged mysql-test/r/select.result: merging mysql-test/t/select.test: merging
-
unknown authored
-
unknown authored
into mysql.com:/usr/home/ram/work/bug22533/my50-bug22533 mysql-test/r/select.result: resolve skipped mysql-test/t/range.test: merging mysql-test/t/select.test: merging sql/item.cc: merging
-
- 17 Jan, 2007 6 commits
-
-
unknown authored
-
unknown authored
-
unknown authored
into zippy.cornsilk.net:/home/cmiller/work/mysql/bug23721/my51-bug23721 BitKeeper/etc/collapsed: auto-union BUILD/check-cpu: Auto merged
-
unknown authored
into zippy.cornsilk.net:/home/cmiller/work/mysql/bug23721/my50-bug23721 BitKeeper/deleted/.del-collapsed~fbec3523369aae99: Delete: BitKeeper/etc/collapsed BUILD/check-cpu: Auto merged BitKeeper/etc/collapsed: 'Auto converge'
-
unknown authored
hyphen in it (like ds-cpl). convert illegal chars in cpu flags to '_' for variable assignment BUILD/check-cpu: convert illegal chars in cpu flags to '_' for variable assignment
-
unknown authored
-
- 16 Jan, 2007 2 commits
- 15 Jan, 2007 4 commits
-
-
unknown authored
Cset exclude: cmiller@221.54.57.10.in-addr.arpa.cmiller/221.54.57.10.in-addr.arpa|ChangeSet|20070111195403|30218 mysql-test/include/have_ndb.inc: Exclude
-
unknown authored
into recycle.(none):/src/mysql-5.1-maint BitKeeper/deleted/.del-CMakeLists.txt~2f6eabb2f69cb33d: Auto merged
-
unknown authored
into recycle.(none):/src/bug19424/my51-bug19424 BitKeeper/deleted/.del-CMakeLists.txt~2f6eabb2f69cb33d: Null Merge.
-
unknown authored
- Re-enabling optimization on all except innodb/mem/*.
-
- 11 Jan, 2007 10 commits
-
-
unknown authored
into mysql.com:/home/tnurnberg/work/mysql-5.1-maint-24660
-
unknown authored
readonly seems like a good idea, but the test suite isn't expecting those statements in some places. Figure out how we want to use this code later. mysql-test/include/have_ndb.inc: Revert to old behavior.
-
unknown authored
into kpdesk.mysql.com:/home/thek/dev/mysql-5.1-maint mysys/mf_iocache.c: Auto merged
-
unknown authored
into kpdesk.mysql.com:/home/thek/dev/mysql-5.1-maint Makefile.am: Auto merged client/mysqlbinlog.cc: Auto merged client/mysqltest.c: Auto merged include/config-win.h: Auto merged include/my_global.h: Auto merged include/my_pthread.h: Auto merged include/mysql.h: Auto merged include/typelib.h: Auto merged mysql-test/Makefile.am: Auto merged mysys/default.c: Auto merged mysys/mf_iocache.c: Auto merged mysys/my_seek.c: Auto merged mysys/my_wincond.c: Auto merged mysys/typelib.c: Auto merged server-tools/instance-manager/guardian.cc: Auto merged server-tools/instance-manager/instance.cc: Auto merged sql/field.cc: Auto merged sql/field.h: Auto merged sql/item_sum.cc: Auto merged sql/item_sum.h: Auto merged sql/net_serv.cc: Auto merged sql/opt_range.cc: Auto merged sql/sql_class.h: Auto merged sql/share/charsets/hebrew.xml: Auto merged sql/sql_parse.cc: Auto merged sql/sql_show.cc: Auto merged strings/conf_to_src.c: Auto merged vio/viossl.c: Auto merged
-
unknown authored
into kpdesk.mysql.com:/home/thek/dev/mysql-5.0-maint mysys/mf_iocache.c: Auto merged mysys/my_read.c: Auto merged mysys/my_seek.c: null merge
-
unknown authored
into kpdesk.mysql.com:/home/thek/dev/mysql-4.1-maint mysys/mf_iocache.c: Auto merged mysys/my_read.c: Auto merged mysys/my_seek.c: Auto merged
-
unknown authored
into naruto.:C:/cpp/mysql-5.1-maint mysys/mf_iocache.c: Auto merged
-
unknown authored
into naruto.:C:/cpp/bug24751/my51-bug24751 mysys/mf_iocache.c: Auto merged
-
unknown authored
into naruto.:C:/cpp/bug24751/my50-bug24751 mysys/mf_iocache.c: Auto merged
-
unknown authored
- When cache memory can't be allocated size is recaclulated using 3/4 of the requested memory. This number is rounded up to the nearest min_cache step. However with the previous implementation the new cache size might become bigger than requested because of this rounding and thus we get an infinit loop. - This patch fixes this problem by ensuring that the new cache size always will be smaller on the second and subsequent iterations until we reach min_cache. mysys/mf_iocache.c: - Added mask to cachesize to ensure that algorithm always produce a smaller cache size than current, until we reach 'min_cache' size.
-
- 09 Jan, 2007 6 commits
-
-
unknown authored
ENUMs weren't allowed to have character 0xff, a perfectly good character in many locales. This was circumvented by mapping 0xff in ENUMs to ',', thereby prevent actual commas from being used (because they too would get converted to 0xff on load). Now if 0xff makes an appearance, we find a character not used in the enum and use that as a separator. If no such character exists, we throw an error. Any solution would have broken some sort of existing behaviour. This solution should serve both fractions (those with 0xff and those with ',' in their enums), but WILL REQUIRE A DUMP/RESTORE CYCLE FROM THOSE WITH 0xff IN THEIR ENUMS. :-/ That is, mysqldump with their current server, and restore when upgrading to one with this patch. (port of the original 4.1 patch. incorporates some suggestions by kaamos.) mysql-test/r/type_enum.result: Bug#24660: "enum" field type definition problem Show that enums can now contain NAMES_SEP_CHAR (0xff, which is a perfectly respectable char in some locales), or ',', or both. mysql-test/t/type_enum.test: Bug#24660: "enum" field type definition problem Show that enums can now contain NAMES_SEP_CHAR (0xff, which is a perfectly respectable char in some locales), or ',', or both. sql/table.cc: Bug#24660: "enum" field type definition problem Revert fix for Bug#20922. sql/unireg.cc: Bug#24660: "enum" field type definition problem Use a field-separator for ENUM-values that is not part of those values. If impossible, throw error.
-
unknown authored
into kpdesk.mysql.com:/home/thek/dev/mysql-5.1-maint
-
unknown authored
into kpdesk.mysql.com:/home/thek/dev/bug23010/my51-bug23010 mysys/mf_iocache.c: Auto merged mysys/my_seek.c: SCCS merged
-
unknown authored
into kpdesk.mysql.com:/home/thek/dev/bug23010/my50-bug23010 mysys/mf_iocache.c: Auto merged mysys/my_seek.c: Auto merged
-
unknown authored
into kpdesk.mysql.com:/home/thek/dev/bug23010/my41-fix23010 mysys/mf_iocache.c: Auto merged mysys/my_seek.c: Auto merged
-
unknown authored
mysys/mf_iocache.c: Exclude mysys/my_seek.c: Exclude
-
- 07 Jan, 2007 2 commits
-
-
unknown authored
error. BUILD/SETUP.sh: Use POSIX "=" equality shell test. mysql-test/r/view.result: Revert year drift.
-
unknown authored
into zippy.cornsilk.net:/home/cmiller/work/mysql/mysql-5.1-maint-greener Makefile.am: Auto merged configure.in: Auto merged include/mysql.h: Auto merged mysql-test/Makefile.am: Auto merged mysql-test/lib/mtr_cases.pl: Auto merged mysql-test/lib/mtr_process.pl: Auto merged mysql-test/mysql-test-run.pl: Auto merged mysql-test/r/myisam.result: Auto merged mysql-test/r/view.result: Auto merged mysql-test/t/myisam.test: Auto merged scripts/make_binary_distribution.sh: Auto merged scripts/mysqlbug.sh: Auto merged server-tools/instance-manager/Makefile.am: Auto merged sql/event_queue.cc: Auto merged sql/field.cc: Auto merged sql/field.h: Auto merged sql/item_sum.h: Auto merged sql/opt_range.cc: Auto merged sql/sql_class.h: Auto merged sql/sql_parse.cc: Auto merged sql/sql_plugin.cc: Auto merged sql/sql_show.cc: Auto merged storage/federated/ha_federated.cc: Auto merged mysql-test/r/warnings.result: Manual merge. mysql-test/t/warnings.test: Manual merge. strings/ctype-extra.c: Manual merge.
-
- 06 Jan, 2007 4 commits
-
-
unknown authored
-
unknown authored
changes.
-
unknown authored
Reset the info after using those files. mysql-test/t/ndb_binlog_ignore_db.test: Reset the binlog after we include several files that have little to do with this test.
-
unknown authored
mysql-test/t/warnings-master.opt: Added skip-innodb option (which was what it once was...) mysql-test/t/warnings.test: Removed un-needed variable setting. Bug only had to do with unterimated string.
-