| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
Added missing DBUG_RETURN statements (in mysqldump.c)
Added missing enums
Fixed a lot of wrong DBUG_PRINT() statements, some of which could cause crashes
Removed usage of %lld and %p in printf strings as these are not portable or produces different results on different systems.
|
|
|
|
| |
into mysql.com:/home/my/mysql-5.1
|
|\
| |
| |
| | |
into mysql.com:/home/my/mysql-5.1
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Moved .progress files into the log directory
Moved 'cluster' database tables into the MySQL database, to not have 'cluster' beeing a reserved database name
Fixed bug where mysqld got a core dump when trying to use a table created by MySQL 3.23
Fixed some compiler warnings
Fixed small memory leak in libmysql
Note that this doesn't changeset doesn't include the new mysqldump.c code required to run some tests. This will be added when I merge 5.0 to 5.1
|
| |
| |
| |
| | |
- Disconnect from transporter before starting to delete objects
|
|\ \
| | |
| | |
| | | |
into mysql.com:/home/bk/MERGE/mysql-5.1-merge
|
| |\ \
| | | |
| | | |
| | | | |
into dsl-hkibras-fe30f900-107.dhcp.inet.fi:/home/elkin/MySQL/TEAM/FIXES/5.1/bug24190_many_field_in_rec_is_0
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
mysql had several(2) exportable definitions of field_in_record_is_null function.
Fixed with adding static.
|
| |\ \ \
| | |/ /
| | | |
| | | | |
into mysql.com:/users/lthalmann/bk/MERGE/mysql-5.1-merge
|
| | |\ \
| | | | |
| | | | |
| | | | | |
into mysql.com:/users/lthalmann/bk/MERGE/mysql-5.1-merge
|
| | | | |
| | | | |
| | | | |
| | | | | |
into mysql.com:/usr/home/bar/mysql-5.1-rpl
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Fixes:
- Bug #15815: Very poor performance with multiple queries running concurrently
- Bug #22868: 'Thread thrashing' with > 50 concurrent conns under an upd-intensive workloadw
- Bug #24089: Race condition in fil_flush_file_spaces()
|
| | | |
| | | |
| | | |
| | | | |
into neptunus.(none):/home/msvensson/mysql/mysql-5.1-new-maint
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
into zippy.cornsilk.net:/home/cmiller/work/mysql/mysql-5.1-maint
|
| | | | |
| | | | |
| | | | |
| | | | | |
into shellback.(none):/home/msvensson/mysql/mysql-5.1-maint
|
| | | | | |
|
| |\ \ \ \
| | |/ / /
| |/| | |
| | | | | |
into siva.hindu.god:/usr/home/tim/m/bk/51
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Fixes:
- Bug #23368: crash during insert, table has foreign key pointing into other schema,permission
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Fixes:
- Bug #18077: InnoDB uses full explicit table locks in stored FUNCTION
|
| | |\ \ \
| | | |/ /
| | |/| |
| | | | | |
into zippy.cornsilk.net:/home/cmiller/work/mysql/mysql-5.1-maint
|
| | | | |
| | | | |
| | | | |
| | | | | |
into example.com:/work/bug23074/my51-bug23074
|
| | | | |
| | | | |
| | | | |
| | | | | |
into bodhi.local:/opt/local/work/mysql-5.1-runtime-merge
|
|\ \ \ \ \
| |_|_|_|/
|/| | | |
| | | | | |
into bodhi.local:/opt/local/work/mysql-5.1-runtime-merge
|
| |\ \ \ \
| | |/ / /
| |/| | |
| | | | | |
into mysql.com:/home/cps/mysql/devel/5.1-rename-bug
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Bug #21785 "Server crashes after rename of the log table" and
Bug #21966 "Strange warnings on create like/repair of the log
tables"
According to the patch, from now on, one should use RENAME to
perform a log table rotation (this should also be reflected in
the manual).
Here is a sample:
use mysql;
CREATE TABLE IF NOT EXISTS general_log2 LIKE general_log;
RENAME TABLE general_log TO general_log_backup, general_log2 TO general_log;
The rules for Rename of the log tables are following:
IF 1. Log tables are enabled
AND 2. Rename operates on the log table and nothing is being
renamed to the log table.
DO 3. Throw an error message.
ELSE 4. Perform rename.
The very RENAME query will go the the old (backup) table. This is
consistent with the behavoiur we have with binlog ROTATE LOGS
statement.
Other problems, which are solved by the patch are:
1) Now REPAIR of the log table is exclusive operation (as it should be), this
also eliminates lock-related warnings. and
2) CREATE LIKE TABLE now usese usual read lock on the source table rather
then name lock, which is too restrictive. This way we get rid of another
log table-related warning, which occured because of the above fact
(as a side-effect, name lock resulted in a warning).
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | | |
into trift2.:/MySQL/M51/push-5.1
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
ndb - revert fix bug#21052 as it's wrong, and induces bus-error on node crashes
|
| |\ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | | |
into mysql.com:/home/hf/work/mysql-5.1-release
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Problem is that some files moved to storage/*/ still are dependent
on sql/ code (usually use members of THD structure)
that can get different being compiled with another #define-s
Code added to recompile these for the embedded server
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | | |
Fix uninit variable, causing problems with auto-increment on rhas3-x86 (only found on this platform, really weird)
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
found with gcc 4.0.2 on Itanium2
(ndb_dd_* failures)
|
| | |_|/ /
| |/| | |
| | | | |
| | | | | |
recommit into release-clone
|
|\ \ \ \ \
| | |/ / /
| |/| | |
| | | | | |
into perch.ndb.mysql.com:/home/jonas/src/mysql-5.1-new-ndb
|
| |\ \ \ \
| | | | | |
| | | | | |
| | | | | | |
into dl145s.mysql.com:/data/bk/team_tree_merge/MERGE/mysql-5.1-opt
|
| | |\ \ \ \
| | | |/ / /
| | |/| | |
| | | | | | |
into dl145s.mysql.com:/data/bk/team_tree_merge/MERGE/mysql-5.1-opt
|
| | | |\ \ \
| | | | | | |
| | | | | | |
| | | | | | | |
into mysql.com:/home/hf/work/21888/my51-21888
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
into mysql.com:/home/hf/work/21888/my51-21888
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
into mysql.com:/home/svoj/devel/mysql/engines/mysql-5.1-engines
|
| |\ \ \ \ \ \
| | |/ / / / /
| |/| | | | |
| | | | | | | |
into chilla.local:/home/mydev/mysql-5.1-merge
|
| | |\ \ \ \ \
| | | | | | | |
| | | | | | | |
| | | | | | | | |
into chilla.local:/home/mydev/mysql-5.1-ateam
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Added proper casts
No test case. myisampack must be tested manually.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
After merge fix. Renamed 'info' -> 'sort_param'.
|
| | |/ / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
into chilla.local:/home/mydev/mysql-5.1-bug8283
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | |
| | | | | | | | |
into perch.ndb.mysql.com:/home/jonas/src/mysql-5.1-new-ndb
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
into perch.ndb.mysql.com:/home/jonas/src/mysql-5.1-new-ndb
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
into orca.ndb.mysql.com:/export/home/space/pekka/ndb/version/my51-tux
|
|/ / / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
into ymer.(none):/usr/local/mysql/mysql-5.1-new-ndb
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | |
| | | | | | | | |
into perch.ndb.mysql.com:/home/jonas/src/mysql-5.1-new-ndb
|
| |\ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
into perch.ndb.mysql.com:/home/jonas/src/mysql-5.1-new-ndb
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
into orca.ndb.mysql.com:/export/home/space/pekka/ndb/version/my51-tux
|