summaryrefslogtreecommitdiff
path: root/mysql-test
Commit message (Collapse)AuthorAgeFilesLines
* Portability fixes found during 5.0 test compilationmonty@mysql.com2003-12-216-5/+25
| | | | | | Fixed bug in ORDER BY on a small column (Bug #2147) Fixed error from pthread_mutex_destroy() when one had wrong errmsg file
* Merge abarkov@bk-internal.mysql.com:/home/bk/mysql-4.1bar@bar.intranet.mysql.r18.ru2003-12-192-0/+59
|\ | | | | | | into bar.intranet.mysql.r18.ru:/usr/home/bar/mysql-4.1
| * Fix for Bug#2151:bar@bar.intranet.mysql.r18.ru2003-12-192-0/+59
| | | | | | | | | | "USE db" affected the character set of further CREATE DATABASEs, which should have not happened.
* | after merge fixesmonty@mysql.com2003-12-195-4/+129
| |
* | merge with 4.0.18monty@mysql.com2003-12-195-12/+210
|\ \
| * | Removed compiler warningmonty@mysql.com2003-12-181-1/+1
| | | | | | | | | | | | Fixed not updated test from last changeset
| * | Simple cleanupsmonty@mysql.com2003-12-181-1/+1
| | |
| * | Merge gbichot@bk-internal.mysql.com:/home/bk/mysql-4.0guilhem@mysql.com2003-12-161-3/+3
| |\ \ | | | | | | | | | | | | into mysql.com:/home/mysql_src/mysql-4.0
| | * | Fix for BUG#2121 "Inadequate message "check permissions on master.info"":guilhem@mysql.com2003-12-161-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | more general message when slave can't start because of incorrect replication information, the previous one was sometimes a misleading indication (i.e. sometimes the problem had nothing to do with system permissions). The perfect fix would be to report the exact error to the client (instead of pointing the client to the error log); this is a bit of work so it's more a development task: WL#1088 "Move all hardcoded messages of replication to share/errmsg.txt". I was not able to modify the errmsg.txt in these sql/ subdirectories: danish dutch german italian portuguese russian spanish swedish ukrainian
| * | | Merge sinisa@bk-internal.mysql.com:/home/bk/mysql-4.0Sinisa@sinisa.nasamreza.org2003-12-162-5/+205
| |\ \ \ | | | | | | | | | | | | | | | into sinisa.nasamreza.org:/mnt/work/mysql-4.0
| | * | | A new better test case for bug #2128 involving overflowSinisa@sinisa.nasamreza.org2003-12-162-5/+205
| | | | | | | | | | | | | | | | | | | | in decimal type with prepended zero's.
* | | | | mergemonty@mysql.com2003-12-1964-78/+1136
|\ \ \ \ \ | |_|_|_|/ |/| | | |
| * | | | Fixes after merge with 4.0monty@mysql.com2003-12-1929-153/+621
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Cleaned up embedded library access and query cache handling Changed min stack size to 128K (to allow longer MyISAM keys) Fixed wrong priority for XOR (should be less than NEG to get -1^1 to work)
| * | | | Merge with 4.0.17monty@mysql.com2003-12-1763-479/+1070
| |\ \ \ \ | | |/ / /
| | * | | Merge bk-internal.mysql.com:/home/bk/mysql-4.0monty@mysql.com2003-12-169-14/+18
| | |\ \ \ | | | |_|/ | | |/| | | | | | | into mysql.com:/my/mysql-4.0
| | | * | Portability fixes (mostly test suite)monty@mysql.com2003-12-169-14/+18
| | | | | | | | | | | | | | | | | | | | | | | | | Make ENGINE= an alias for TYPE= (Compabiltiy with 4.1) Fix when using symlinked data files and realpath() is not working
| | * | | Merge gbichot@bk-internal.mysql.com:/home/bk/mysql-4.0guilhem@mysql.com2003-12-162-0/+46
| | |\ \ \ | | | |_|/ | | |/| | | | | | | into mysql.com:/home/mysql_src/mysql-4.0
| | | * | Fix for BUG#2083guilhem@mysql.com2003-12-162-0/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | "EE_ error codes (EE_DELETE, EE_WRITE) end up in the binlog, making slave stop". The problem was that during execution of the command on the master, an error can occur (for example, not space left on device, then mysqld waits and when there is space it completes successfully: so finally it worked but the error EE_WRITE remains in thd->net.last_errno and thd->net.last_error). To know if finally the command succeeded, we test the 'error' variable in every place, and if it shows no failure we reset thd->net.last_err* using the function THD::clear_error() which is backported from 4.1. A new test to see if now only real errors get to the binlog (note: the test uses "rm"). Also a bit of memory free/alloc saving in log_event.cc (do not free the whole mem_root after every query in the slave SQL thread: we can keep the initial block of it; which will be freed when the thread terminates).
| | * | | MergeSinisa@sinisa.nasamreza.org2003-12-1513-21/+78
| | |\ \ \ | | | | |/ | | | |/|
| | | * | Portablity fixmonty@mysql.com2003-12-145-15/+27
| | | | |
| | | * | Extend max_allowed_packet to 2G in mysql and mysqldump (Bug #2105)monty@mysql.com2003-12-148-6/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Don't dump data for MRG_ISAM or MRG_MYISAM tables. (Bug #1846) Ensure that 'lower_case_table_names' is always set on case insensitive file systems. (Bug #1812) One can now configure MySQL as windows service as a normal user. (Bug #1802) Database names is now compared with lower case in ON clause when lower_case_table_names is set. (Bug #1736) IGNORE ... LINES option didn't work when used with fixed length rows. (Bug #1704) Change INSERT DELAYED ... SELECT... to INSERT .... SELECT (Bug #1983) Safety fix for service 'mysql start' (Bug #1815)
| | * | | Merge sinisa@bk-internal.mysql.com:/home/bk/mysql-4.0Sinisa@sinisa.nasamreza.org2003-12-132-0/+12
| | |\ \ \ | | | |/ / | | |/| | | | | | | into sinisa.nasamreza.org:/mnt/work/mysql-4.0
| | | * | Merge sinisa@bk-internal.mysql.com:/home/bk/mysql-4.0Sinisa@sinisa.nasamreza.org2003-12-132-0/+12
| | | |\ \ | | | | | | | | | | | | | | | | | | into sinisa.nasamreza.org:/mnt/work/mysql-4.0
| | | | * \ Merge sinisa@bk-internal.mysql.com:/home/bk/mysql-4.0Sinisa@sinisa.nasamreza.org2003-12-112-0/+12
| | | | |\ \ | | | | | | | | | | | | | | | | | | | | | into sinisa.nasamreza.org:/mnt/work/mysql-4.0
| | | | | * \ Merge sinisa@bk-internal.mysql.com:/home/bk/mysql-4.0Sinisa@sinisa.nasamreza.org2003-12-012-0/+12
| | | | | |\ \ | | | | | | | | | | | | | | | | | | | | | | | | into sinisa.nasamreza.org:/mnt/work/mysql-4.0
| | | | | | * \ Merge sinisa@bk-internal.mysql.com:/home/bk/mysql-4.0Sinisa@sinisa.nasamreza.org2003-11-242-0/+12
| | | | | | |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | into sinisa.nasamreza.org:/mnt/work/mysql-4.0
| | | | | | | * | Fix for bug when zeros are to be prepended to decimal fieldSinisa@sinisa.nasamreza.org2003-11-182-0/+12
| | | | | | | | |
| | * | | | | | | Mergemonty@mysql.com2003-12-1320-3/+381
| | |\ \ \ \ \ \ \
| | | * | | | | | | Fix autoincrement for signed columns (Bug #1366)monty@mysql.com2003-12-1220-3/+381
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed problem with char > 128 in QUOTE() function. (Bug #1868) Disable creation of symlinks if my_disable_symlink is set Fixed searching of TEXT with end space. (Bug #1651) Fixed caching bug in multi-table-update where same table was used twice. (Bug #1711) Fixed problem with UNIX_TIMESTAMP() for timestamps close to 0. (Bug #1998) Fixed timestamp.test
| | * | | | | | | | Merge vvagin@bk-internal.mysql.com:/home/bk/mysql-4.0vva@eagle.mysql.r18.ru2003-12-122-0/+21
| | |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into eagle.mysql.r18.ru:/home/vva/work/BUG_2023/mysql-4.0
| | | * | | | | | | | added checking for old cuted value in Field_enum::storevva@eagle.mysql.r18.ru2003-12-122-0/+21
| | | |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (bug #2023)
| | * | | | | | | | Proposed fix for #2093hf@deer.(none)2003-12-122-0/+30
| | | |/ / / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | it happens because of the LEFT JOINT optimization in add_key_part() This optimization does exactly the same in JOIN and in WHERE conditions Not right. I moved that optimization one level upper.
| | * | | | | | | Merge rurik.mysql.com:/home/igor/mysql-4.0igor@rurik.mysql.com2003-12-112-0/+49
| | |\ \ \ \ \ \ \ | | | |/ / / / / / | | |/| | | | | | | | | | | | | | | into rurik.mysql.com:/home/igor/dev/mysql-4.0-1
| | | * | | | | | Many files:igor@rurik.mysql.com2003-12-112-0/+49
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed a bug causing a crash for multi-update/multi-delete with impossible where (bug #1860).
| | * | | | | | | Added --comments mysqldump option (default value is 1).ram@gw.mysql.r18.ru2003-12-112-12/+30
| | | |/ / / / / | | |/| | | | | | | | | | | | | | | | | | | | | Fixed mysqldump test.
| | * | | | | | Disable some tests until replace can handle regexpram@gw.mysql.r18.ru2003-12-112-57/+11
| | |/ / / / /
| | * | | | | Merge bk-internal.mysql.com:/home/bk/mysql-4.0monty@mysql.com2003-12-116-8/+85
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | into mysql.com:/my/mysql-4.0
| | | * | | | | Fixed a possible memory leak on MacOSX when using the shared libmysql.so ↵monty@mysql.com2003-12-116-8/+85
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | library (Bug #2061) mysql_server_init() now returns error code if something went wrong (Bug #2062) Don't use my_fopen() when reading symlink information as this may cause problems when a lot of files are opened. Free thread keys with pthread_key_delete() instead of relying on automatic free. (Bug #2062) Fixed bug in UNION statement with alias '*'. (Bug #1249) Fixed a bug in DELETE ... ORDER BY ... LIMIT where the rows where not deleted in the proper order. (Bug #1024). FOUND_ROWS() could return incorrect number of rows after a query with an impossible WHERE condition. HOW DATABASES doesn't anymore show .sym files (on windows) that doesn't point to a valid directory. (Bug #1385)
| | * | | | | | Merge bk-internal.mysql.com:/home/bk/mysql-4.0konstantin@mysql.com2003-12-102-0/+67
| | |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | into mysql.com:/home/kostja/mysql/mysql-4.0-1993
| | | * | | | | | proper musqldump test resultram@gw.mysql.r18.ru2003-12-101-0/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (in addition to CS 1.1623 03/12/09)
| | | * | | | | | Merge rkalimullin@bk-internal.mysql.com:/home/bk/mysql-4.0ram@gw.mysql.r18.ru2003-12-101-0/+19
| | | |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into gw.mysql.r18.ru:/usr/home/ram/work/4.0.b2005
| | | | * | | | | | Fix for the bugs:ram@gw.mysql.r18.ru2003-12-091-0/+19
| | | | | |_|_|_|/ | | | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | #2005 Long decimal comparion bug. #2055 mysqldump should replace "-inf" numeric field values with "NULL"
| | * | | | | | | fix for bug #1993 'bit functions do not return unsigned values'konstantin@mysql.com2003-12-102-0/+27
| | |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | introduced base class Item_func_bit for bit functions
| | * | | | | | Merge mysql.com:/home/kostja/mysql/mysql-4.0-rootkonstantin@mysql.com2003-12-102-6/+25
| | |\ \ \ \ \ \ | | | |_|/ / / / | | |/| | | | | | | | | | | | | into mysql.com:/home/kostja/mysql/mysql-4.0-1790
| | | * | | | | followup to fix for bug #1790 BIT_AND() result in GROUP BY different when konstantin@mysql.com2003-12-102-6/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | SQL_BIG_RESULT used": now BIT_AND() always returns 18446744073709551615 if no rows were found. This patch also fixes bug #1972: "BIT_AND() and BIT_OR() still return a *signed* 64bit value"
| | * | | | | | Merge bk-internal.mysql.com:/home/bk/mysql-4.0konstantin@mysql.com2003-12-102-1/+54
| | |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | into mysql.com:/home/kostja/mysql/mysql-4.0-1335
| | | * | | | | | bug #1335 tests followup:konstantin@mysql.com2003-12-102-4/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | --disable_query_log was not a good idea, Serg says
| | | * | | | | | Fix for bug #1335: filesort is missing in EXPLAIN if ORDER BY NULL is usedkonstantin@mysql.com2003-12-092-1/+44
| | | | | | | | |
| | * | | | | | | Merge sanja.is.com.ua:/home/bell/mysql/bk/mysql-4.0bell@sanja.is.com.ua2003-12-092-2/+13
| | |\ \ \ \ \ \ \ | | | |/ / / / / / | | |/| | | | | | | | | | | | | | | into sanja.is.com.ua:/home/bell/mysql/bk/work-qc-4.0
| | | * | | | | | database invalidation invalidate queries only of given database (BUG#1898)bell@sanja.is.com.ua2003-11-202-2/+13
| | | | | | | | |