summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* make error message more detailedserg@serg.mylan2003-11-121-2/+2
|
* Fix for Bug #1752 Wrong letter cases.salle@vafla.online.bg2003-11-052-2/+3
| | | | Thanks to Daniel Convissor
* Merge akishkin@bk-internal.mysql.com:/home/bk/mysql-4.0walrus@mysql.com2003-11-051-1/+1
|\ | | | | | | into mysql.com:/home/walrus/bk/40
| * compile-pentium-gcov:walrus@mysql.com2003-11-051-1/+1
| | | | | | | | | | Stop line wraping for compiler warnings. It needs for warnings statistic in code coverage
* | Merge kosipov@bk-internal.mysql.com:/home/bk/mysql-4.0konstantin@mysql.com2003-11-041-1/+1
|\ \ | | | | | | | | | into mysql.com:/home/kostja/mysql/mysql-4.0-root
| * | Word Police law is abidedkonstantin@mysql.com2003-11-041-1/+1
| | |
* | | Merge bk-internal:/home/bk/mysql-4.0/serg@serg.mylan2003-11-033-1/+9
|\ \ \ | |/ / |/| | | | | into serg.mylan:/usr/home/serg/Abk/mysql-4.0
| * | fixed a bug in boolean fts where a word queue was created based on ↵serg@serg.mylan2003-11-033-1/+9
| | | | | | | | | | | | min_word_len, while with trunc* operator one could get shorter words
* | | Merge mysql.com:/home/kostja/mysql/mysql-4.0-rootkonstantin@mysql.com2003-11-033-0/+30
|\ \ \ | | | | | | | | | | | | into mysql.com:/home/kostja/mysql/mysql-4.0-1724
| * \ \ Merge gbichot@bk-internal.mysql.com:/home/bk/mysql-4.0guilhem@mysql.com2003-11-033-0/+30
| |\ \ \ | | |_|/ | |/| | | | | | into mysql.com:/home/mysql_src/mysql-4.0
| | * | When we delete the slave's temp tables from memory, we resetguilhem@mysql.com2003-11-033-0/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | rli->save_temporary_tables and slave_open_temp_tables (in old 4.0 you could make "SHOW STATUS LIKE 'slave_open_temp_tables'" grow indefinitely by doing RESET SLAVE and replicating always the same CREATE TEMPORARY TABLE). It's critical to reset save_temporary_tables to 0 (otherwise you may later read memory which has been freed) so this changeset should go into 4.1.
* | | | fix for bug #1724 'WHERE ... IN() optimizer behaviour konstantin@mysql.com2003-11-035-28/+87
|/ / / | | | | | | | | | | | | | | | | | | has changed since 4.0.14' We need to calculate cost of RANGE scan if it is present instead of cost of FULL scan.
* | | Portability fixmonty@narttu.mysql.fi2003-11-021-1/+1
| | |
* | | Merge bk-internal.mysql.com:/home/bk/mysql-4.0monty@mysql.com2003-11-0215-48/+105
|\ \ \ | |/ / |/| | | | | into mysql.com:/my/mysql-4.0
| * | Call my_sync() after all data is written to .frm filemonty@mysql.com2003-11-0215-48/+105
| | | | | | | | | | | | Added my_sync() to mysys which will do fsync/fdatasync/_commit() on a file.
* | | 4 small items in this:guilhem@mysql.com2003-10-3110-13/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - when we don't have in_addr_t, use uint32. - a forgotten initialization of slave_proxy_id in sql/log_event.cc (was not really "forgot", was "we needn't init it there", but there was one case where we needed...). - made slave_proxy_id always meaningful in THD and Log_event, so we can rely more on it (no need to test if it's meaningful). THD::slave_proxy_id is equal to THD::thread_id except for the slave SQL thread. - clean up the slave's temporary table (i.e. free their memory) when slave server shuts down.
* | | minor fix in rmkonstantin@mysql.com2003-10-311-2/+2
| | |
* | | thd->query assignment moved outkonstantin@mysql.com2003-10-311-1/+1
|/ / | | | | | | of lock scope
* | Merge kosipov@bk-internal.mysql.com:/home/bk/mysql-4.0konstantin@mysql.com2003-10-301-1/+10
|\ \ | | | | | | | | | into mysql.com:/home/kostja/mysql/mysql-4.0-root
| * | comments about designation of thd->where and konstantin@mysql.com2003-10-301-1/+10
| | | | | | | | | | | | thd->proc_info added
* | | Merge gbichot@bk-internal.mysql.com:/home/bk/mysql-4.0guilhem@mysql.com2003-10-308-18/+204
|\ \ \ | |/ / |/| | | | | into mysql.com:/home/mysql_src/mysql-4.0
| * | Fix to be able to runguilhem@mysql.com2003-10-301-1/+7
| | | | | | | | | | | | | | | mysql-test-run --manager --valgrind (without this fix, the manager fails to start mysqld and the tests hang).
| * | Fix for BUG#1686guilhem@mysql.com2003-10-298-17/+197
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | "If 2 master threads with same-name temp table, slave makes bad binlog" and (two birds with one stone) for BUG#1240 "slave of slave breaks when STOP SLAVE was issud on parent slave and temp tables". Here is the design change: in a slave running with --log-slave-updates, events are now logged with the thread id they had on the master. So no more id conflicts between master threads, but introduces id conflicts between one master thread and one normal client thread connected to the slave. This is solved by storing the server id in the temp table's name. New test which requires mysql-test-run to be run with --manager, otherwise it will be skipped. Undoing a Monty's change (hum, a chill runs down my spine ;) which was "Cleanup temporary tables when slave ends" in ChangeSet 1.1572.1.1.
* | | Merge kosipov@bk-internal.mysql.com:/home/bk/mysql-4.0konstantin@mysql.com2003-10-302-2/+3
|\ \ \ | | | | | | | | | | | | into mysql.com:/home/kostja/mysql/mysql-4.0-root
| * | | fix for bug #1634 '"operator new" in my_new wastes memory'konstantin@mysql.com2003-10-302-2/+3
| | |/ | |/|
* | | Safety fix for adding service name to search config groupsmonty@narttu.mysql.fi2003-10-301-1/+2
| | |
* | | Change back service name to MySQLmonty@narttu.mysql.fi2003-10-304-10/+22
|/ / | | | | | | | | Don't add service name to read config file segments if it's "MySQL" Fixed possible memory leak when CHANGE USER failed.
* | Merge bk-internal:/home/bk/mysql-4.0/serg@serg.mylan2003-10-293-9/+17
|\ \ | | | | | | | | | into serg.mylan:/usr/home/serg/Abk/mysql-4.0
| * \ Merge bk-internal.mysql.com:/home/bk/mysql-4.0monty@narttu.mysql.fi2003-10-282-7/+9
| |\ \ | | | | | | | | | | | | into narttu.mysql.fi:/my/mysql-4.0
| | * | Fix for problem of installing MySQL as a service withmonty@narttu.mysql.fi2003-10-282-7/+9
| | | | | | | | | | | | | | | | | | | | mysql --install mysql --defualts-file=path-to-file (Bug #1643)
| * | | row0sel.c:heikki@hundin.mysql.fi2003-10-281-2/+8
| |/ / | | | | | | | | | If innodb_force_recovery >= 5, do not try to fetch an old version of a clustered index record: this reduces crashes when dumping tables from a corrupt database
* | | followup to max_user_connections fix, keep the count more accurateserg@serg.mylan2003-10-291-3/+4
| | |
* | | fixes for max_user_connections (connections are now counted even ifserg@serg.mylan2003-10-271-10/+15
| | | | | | | | | | | | | | | | | | | | | max_user_connections is not set - that is no limit - so that when max_user_connections is set (with SET) old connections are also taken into account mutexes are added where appropriate
* | | correct casting in ulonglong2doubleserg@serg.mylan2003-10-272-4/+4
| | |
* | | cleanupserg@serg.mylan2003-10-251-2/+1
|/ /
* | Merge vvagin@bk-internal.mysql.com:/home/bk/mysql-4.0vva@eagle.mysql.r18.ru2003-10-251-1/+4
|\ \ | | | | | | | | | into eagle.mysql.r18.ru:/home/vva/work/BUG_1228/mysql-4.0
| * \ Merge eagle.mysql.r18.ru:/home/vva/work/mysql.orig/clear/mysql-4.0vva@eagle.mysql.r18.ru2003-10-251-1/+4
| |\ \ | | | | | | | | | | | | into eagle.mysql.r18.ru:/home/vva/work/BUG_1348/mysql-4.0
| | * | added quotas for database namesvva@eagle.mysql.r18.ru2003-10-241-1/+4
| | | | | | | | | | | | | | | | (fixed bug #1348)
* | | | Merge eagle.mysql.r18.ru:/home/vva/work/mysql.orig/clear/mysql-4.0vva@eagle.mysql.r18.ru2003-10-251-3/+7
|\ \ \ \ | |/ / / |/| | | | | | | into eagle.mysql.r18.ru:/home/vva/work/BUG_1228/mysql-4.0
| * | | added to mysql_secure_installation vva@eagle.mysql.r18.ru2003-10-241-3/+7
| | | | | | | | | | | | | | | | changing root password on all hosts (bug 1228)
* | | | Move the pid file testing after arguments are parsed (previous patch was not ↵monty@narttu.mysql.fi2003-10-241-13/+13
| | | | | | | | | | | | | | | | correct)
* | | | Merge pmartin@bk-internal.mysql.com:/home/bk/mysql-4.0pem@mysql.com2003-10-231-1/+2
|\ \ \ \ | | | | | | | | | | | | | | | into mysql.com:/home/pem/work/mysql-4.0
| * | | | Put username in the Subject line as well (with the changeset number).pem@mysql.com2003-10-231-1/+2
| |/ / /
* | | | Fix results after mergemonty@narttu.mysql.fi2003-10-231-1/+0
| | | |
* | | | Merge with 3.23 to get 4.0 tree in sync (no relevant changes to 4.0 tree)monty@narttu.mysql.fi2003-10-231-1/+0
|\ \ \ \
| * | | | Fix for Bug #1595 "mysqlbinlog can't read a password from the console".guilhem@mysql.com2003-10-201-4/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Make mysqlbinlog prompt for the password if mysqlbinlog -p instead of printing the usage(). This makes mysqlbinlog behave like other clients, which is the reason why we fix this in 3.23. This new code was almost copied from mysqldump. Note that before, one could use mysqlbinlog -p pass and now one must use mysqlbinlog -ppass (putting a space will ask for the password).
| * | | | Merge gbichot@bk-internal.mysql.com:/home/bk/mysql-3.23guilhem@mysql.com2003-10-181-1/+1
| |\ \ \ \ | | | | | | | | | | | | | | | | | | into mysql.com:/home/mysql_src/mysql-3.23
| | * | | | backport of a fix made in 4.0 to make replication work in 64-bit binaries.guilhem@mysql.com2003-09-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The 4.0 changeset was: ChangeSet@1.1579.3.1, 2003-09-26 23:43:22+02:00, guilhem@mysql.com Fix for 64-bit machines. I am almost sure this is the cause for BUG#1381 [Opn]: Bug in replication on HP-UX 64 bit binaries? BUG#1256 [CRp]: Replication slave fails to connect to master in 64-bit version (Solaris) The reason why I think it's wrong is that the normal client code has uint32 ip_addr. (of course on 32-bit machines it does not matter, but on 64-bit it does).
| * | | | | Merge bk-internal.mysql.com:/home/bk/mysql-3.23monty@mishka.mysql.fi2003-10-083-10/+3
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | into mishka.mysql.fi:/home/my/mysql-3.23
| | * | | | | Fixed memory leak in send_filemonty@mishka.mysql.fi2003-10-083-10/+3
| | | | | | |