- 20 Apr, 2007 9 commits
-
-
mtaylor@qualinost.(none) authored
into qualinost.(none):/home/mtaylor/src/mysql/mysql-5.0-debian
-
cmiller@zippy.cornsilk.net authored
into zippy.cornsilk.net:/home/cmiller/work/mysql/mysql-5.0-maint
-
cmiller@zippy.cornsilk.net authored
-
tomas@whalegate.ndb.mysql.com authored
into whalegate.ndb.mysql.com:/home/tomas/mysql-5.0-maint
-
mtaylor@qualinost.(none) authored
-
mtaylor@qualinost.(none) authored
-
mtaylor@blade09.mysql.com authored
Left a stray space in.
-
mtaylor@blade09.mysql.com authored
Renamed libmysqlclient package entires
-
mtaylor@blade09.mysql.com authored
Rename: debian/libmysqlclientSLIB.README.Debian.in -> debian/libmysqlclientSLIBoff.README.Debian.in libmysqlclientSLIBoff.docs.in: Rename: debian/libmysqlclientSLIB.docs.in -> debian/libmysqlclientSLIBoff.docs.in control.in: Renamed packages back to libmysqlclientSLIBoff to match current packages. We can rename this in a sensible way later on. libmysqlclientSLIBoff.files.in: Rename: debian/libmysqlclientSLIB.files.in -> debian/libmysqlclientSLIBoff.files.in libmysqlclientSLIBoff.dirs.in: Rename: debian/libmysqlclientSLIB.dirs.in -> debian/libmysqlclientSLIBoff.dirs.in libmysqlclientSLIBoff.postinst.in: Rename: debian/libmysqlclientSLIB.postinst.in -> debian/libmysqlclientSLIBoff.postinst.in
-
- 19 Apr, 2007 10 commits
-
-
tsmith@quadxeon.mysql.com authored
Fix test case: add drop table
-
mtaylor@blade09.mysql.com authored
Protect the control file from running ./configure again
-
cmiller@zippy.cornsilk.net authored
errno Vasil Dimov (at Oracle) noted that pthread_key_create() does not set errno, so if it fails then we return the wrong error code. Instead, capture the return value, which is the real error value, and instead report that.
-
mtaylor@blade09.mysql.com authored
Fixed branding problem. Many files: Fixed branding problem changelog: Upgraded to 5.0.42 defs.mk.in: Fixed branding and variable persiting problem.
-
tsmith@quadxeon.mysql.com authored
Add test case for Bug #27210: INNODB ON DUPLICATE KEY UPDATE
-
into mysql.com:/home/ram/work/b26851/b26851.5.0
-
into mysql.com:/home/ram/work/b22824/my50-b22824
-
into mysql.com:/home/ram/work/b26851/b26851.5.0
-
tsmith@siva.hindu.god authored
into siva.hindu.god:/home/tsmith/m/inno/apr18/50
-
tsmith@siva.hindu.god authored
NULL MERGE: this ChangeSet will be null merged into mysql-5.1 Fixes: - Bug #26662: mysqld assertion when creating temporary (InnoDB) table on a tmpfs filesystem Fix by not open(2)ing with O_DIRECT but rather calling fcntl(2) to set this flag immediately after open(2)ing. This way an error caused by O_DIRECT not being supported can easily be ignored. - Bug #23313: AUTO_INCREMENT=# not reported back for InnoDB tables - Bug #21404: AUTO_INCREMENT value reset when Adding FKEY (or ALTER?) Report the current value of the AUTO_INCREMENT counter to MySQL.
-
- 18 Apr, 2007 7 commits
-
-
mtaylor@qualinost.(none) authored
into qualinost.(none):/home/mtaylor/src/mysql/mysql-5.0-maint
-
mtaylor@qualinost.(none) authored
-
tsmith@siva.hindu.god authored
into siva.hindu.god:/home/tsmith/m/bk/maint/50
-
tomas@poseidon.mysql.com authored
-
mtaylor@qualinost.(none) authored
into qualinost.(none):/home/mtaylor/src/mysql/mysql-5.0-maint
-
mtaylor@qualinost.(none) authored
-
mtaylor@qualinost.(none) authored
Replaced hardcoded sover reference with variable. Removed references to added manpages. --- BUG#27769 Cleaned up some things to make building the packages go a little smoother. --- debian/rules really does need to be called from the source root. --- Fixed two problems with the build caused by adding debian to the source tree --- Left off the debian/ prefix to the Makefile filter. --- BUG#27769 - MySQL should include debian packaging dir Changed substitution variables to match already existing autoconf vars. Generate debian/control and debian/defs.mk from autoconf now, since we run that to make a source package. --- Corrected incorrect variable name --- Renamed template files to have shorter names. --- Moved generation of debian/control to dist-hook so make clean won't eat it. --- A few final changes to make debs build from a source tarball dist.
-
- 17 Apr, 2007 5 commits
-
-
tsmith@siva.hindu.god authored
into siva.hindu.god:/home/tsmith/m/bk/maint/50
-
tsmith@siva.hindu.god authored
into siva.hindu.god:/home/tsmith/m/bk/maint/50
-
tsmith@siva.hindu.god authored
into siva.hindu.god:/home/tsmith/m/bk/maint/41
-
jamppa@bk-internal.mysql.com authored
into bk-internal.mysql.com:/data0/bk/mysql-5.0-marvel
-
-
- 16 Apr, 2007 4 commits
-
-
dkatz@damien-katzs-computer.local authored
into damien-katzs-computer.local:/Users/dkatz/50b
-
tomas@whalegate.ndb.mysql.com authored
into whalegate.ndb.mysql.com:/home/tomas/mysql-5.0-maint
-
tomas@whalegate.ndb.mysql.com authored
- enable indexes to be used always, if in single user, reject will happen before, and if it is kerlel doing stuff, it should always be allowed
-
bug #27715: mysqld --character-sets-dir buffer overflow bug ##26851: Mysql Client --pager Buffer Overflow Using strmov() to copy an argument may cause overflow if the argument's length is bigger than the buffer: use strmake instead. Also, we have to encrease the error message buffer size to fit the longest message.
-
- 15 Apr, 2007 4 commits
-
-
evgen@moonbone.local authored
Fix warning after fix for bug#27321.
-
evgen@moonbone.local authored
After merge fix.
-
evgen@moonbone.local authored
into moonbone.local:/mnt/gentoo64/work/27321-bug-5.0-opt-mysql
-
evgen@moonbone.local authored
The Item_outer_ref class based on the Item_direct_ref class was always used to represent an outer field. But if the outer select is a grouping one and the outer field isn't under an aggregate function which is aggregated in that outer select an Item_ref object should be used to represent such a field. If the outer select in which the outer field is resolved isn't grouping then the Item_field class should be used to represent such a field. This logic also should be used for an outer field resolved through its alias name. Now the Item_field::fix_outer_field() uses Item_outer_field objects to represent aliased and non-aliased outer fields for grouping outer selects only. Now the fix_inner_refs() function chooses which class to use to access outer field - the Item_ref or the Item_direct_ref. An object of the chosen class substitutes the original field in the Item_outer_ref object. The direct_ref and the found_in_select_list fields were added to the Item_outer_ref class.
-
- 14 Apr, 2007 1 commit
-
-
holyfoot/hf@mysql.com/hfmain.(none) authored
into mysql.com:/d2/hf/mrg/mysql-5.0-opt
-