summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* SELECT BINARY expr unknown2003-03-048-23/+51
| | | | | | | | is now synonim for SELECT expr COLLATE <expr_charset>_bin
* stringcmp() and sortcmp() have been unifiedunknown2003-03-0411-132/+102
| | | | | | | | into the only one sortcmp() with additional CHARSET_INFO *cmp_charset argument.
* Fix for reading variables from binary log.unknown2003-03-041-3/+9
|
* Fix for using unitialized mutex when running version compiled with --debugunknown2003-03-045-18/+9
| | | | | | | | | | | | | include/mysql_embed.h: Disable shared memory for embedded version libmysqld/lib_sql.cc: Fix for --debug version (init_thread_environment was called in wrong place) sql/log_event.h: Portability fix sql/mysqld.cc: Fix for --debug version (init_thread_environment was called in wrong place) sql/sql_parse.cc: Simply code cleanup
* Fix for SHOW, it didn't display CHARACTER SET and COLLATE clauseunknown2003-03-045-18/+56
| | | | | | | for binary collations
* Every character set now has binary collationunknown2003-03-0425-128/+119
|
* Do not give an error when the user does START SLAVE on an alreadyunknown2003-03-0326-10/+90
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | running slave, just give a warning. Same thing for STOP SLAVE. This will make scripts writing easier for users. include/mysqld_error.h: New error codes (warning codes in fact) to warn that the slave was already started or stopped mysql-test/include/master-slave.inc: STOP SLAVE now prints a warning, not an error, so we should expect a warning here sql/share/czech/errmsg.txt: New messages to warn that the slave was already started or stopped sql/share/danish/errmsg.txt: New messages to warn that the slave was already started or stopped sql/share/dutch/errmsg.txt: New messages to warn that the slave was already started or stopped sql/share/english/errmsg.txt: New messages to warn that the slave was already started or stopped sql/share/estonian/errmsg.txt: New messages to warn that the slave was already started or stopped sql/share/french/errmsg.txt: New messages to warn that the slave was already started or stopped sql/share/german/errmsg.txt: New messages to warn that the slave was already started or stopped sql/share/greek/errmsg.txt: New messages to warn that the slave was already started or stopped sql/share/hungarian/errmsg.txt: New messages to warn that the slave was already started or stopped sql/share/italian/errmsg.txt: New messages to warn that the slave was already started or stopped sql/share/japanese/errmsg.txt: New messages to warn that the slave was already started or stopped sql/share/korean/errmsg.txt: New messages to warn that the slave was already started or stopped sql/share/norwegian-ny/errmsg.txt: New messages to warn that the slave was already started or stopped sql/share/norwegian/errmsg.txt: New messages to warn that the slave was already started or stopped sql/share/polish/errmsg.txt: New messages to warn that the slave was already started or stopped sql/share/portuguese/errmsg.txt: New messages to warn that the slave was already started or stopped sql/share/romanian/errmsg.txt: New messages to warn that the slave was already started or stopped sql/share/russian/errmsg.txt: New messages to warn that the slave was already started or stopped sql/share/serbian/errmsg.txt: New messages to warn that the slave was already started or stopped sql/share/slovak/errmsg.txt: New messages to warn that the slave was already started or stopped sql/share/spanish/errmsg.txt: New messages to warn that the slave was already started or stopped sql/share/swedish/errmsg.txt: New messages to warn that the slave was already started or stopped sql/share/ukrainian/errmsg.txt: New messages to warn that the slave was already started or stopped sql/sql_repl.cc: Do not give an error when the user does START SLAVE on an already running slave, just give a warning. Same thing for STOP SLAVE.
* Merge rkalimullin@work.mysql.com:/home/bk/mysql-4.1unknown2003-03-031-2/+5
|\ | | | | | | | | | | | | into mysql.r18.ru:/usr/home/ram/work/mysql-4.1
| * os_rename.c:unknown2003-03-011-1/+1
| | | | | | | | | | | | | | | | Typo fix. bdb/os_win32/os_rename.c: Typo fix.
| * os_rename.c:unknown2003-03-011-2/+5
| | | | | | | | | | | | | | | | Portability fix. GetLongPathName is not supported by Windows95. bdb/os_win32/os_rename.c: Portability fix. GetLongPathName is not supported by Windows95.
* | Coercibility is now stored in user varsunknown2003-03-035-10/+17
| | | | | | | | | | | | | | sql/item.h: Change constant values order according to the word "coercibility" nature sql/item_func.cc: Change constant values order according to the word "coercibility" nature
* | Strings which appear without charset context, unknown2003-03-0311-111/+111
| | | | | | | | | | | | | | | | | | | | | | | | | | like number-to-string-convertion-result, now takes current database character set, instead of thread character set. This makes it easy to be SQL99 conformant and 4.0 compatible. Item->thd_charset() is renamed to Item->default_charset() as old name doesn't describe its nature anymore.
* | COLLATE testsunknown2003-03-022-0/+601
| |
* | sql_yacc.yy:unknown2003-03-021-1/+14
| | | | | | | | | | | | | | | | Produce an error when a field collation and charset are not compatible sql/sql_yacc.yy: Produce an error when a field collation and charset are not compatible
* | New error message for situation like:unknown2003-03-0225-2/+35
| | | | | | | | | | | | | | SELECT latin1_expr COLLATE anpther_charset_collation
* | Replication: give the slave I/O thread a higher priority than the slave SQL ↵unknown2003-03-012-4/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | thread so that it has fetched the most from the master's binlog before the master accidently dies. SCRUM task #756. sql/slave.cc: Replication: give the slave I/O thread a higher priority than the slave SQL thread so that it has fetched the most from the master's binlog before the master accidently dies. sql/slave.h: Replication: give the slave I/O thread a higher priority than the slave SQL thread so that it has fetched the most from the master's binlog before the master accidently dies.
* | Added options reconnect/enable-reconnect/disable-reconnect/skip-reconnect to ↵unknown2003-03-013-7/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the 'mysql' command-line client. Disabling can be safer when the server silently dies & restarts. This is for SCRUM task #727. client/client_priv.h: Added options reconnect/enable-reconnect/disable-reconnect/skip-reconnect to the 'mysql' command-line client client/mysql.cc: Added options reconnect/enable-reconnect/disable-reconnect/skip-reconnect to the 'mysql' command-line client. Disabling can be safer when the server silently dies & restarts. BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted
* | Merge work:/home/bk/mysql-4.1unknown2003-03-012-2/+2
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | into serg.mysql.com:/usr/home/serg/Abk/mysql-4.1 BitKeeper/etc/ignore: auto-union sql/sql_select.cc: Auto merged
| * | error message fixedunknown2003-02-262-1/+2
| | | | | | | | | | | | | | | BitKeeper/etc/ignore: Added scripts/make_win_src_distribution to the ignore list
* | | Test case for spatial objects.unknown2003-03-012-0/+418
| | |
* | | Added GeometryFromText, MultiPointFromText aliases.unknown2003-02-282-1/+6
| |/ |/| | | | | | | | | | | Added GeometryCollection type.
* | item_func.cc:unknown2003-02-281-4/+23
| | | | | | | | | | | | | | | | Fix for coercibility of function sql/item_func.cc: Fix for coercibility of function
* | item_strfunc.cc:unknown2003-02-281-0/+1
| | | | | | | | | | | | | | | | Charset conversion function changes coercibility to IMPLICIT sql/item_strfunc.cc: Charset conversion function changes coercibility to IMPLICIT
* | sql_yacc.yy:unknown2003-02-282-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | _charset cast changes coercibility to implicit item_strfunc.cc: Collation cast change coercibility to EXPLICIT sql/item_strfunc.cc: Collation cast change coercibility to EXPLICIT sql/sql_yacc.yy: _charset cast changes coercibility to implicit
* | Many files:unknown2003-02-288-6/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Coercibility, initial stage item_func.h: Coercibility, initial stage sql/item_func.h: Coercibility, initial stage sql/item.cc: Coercibility, initial stage sql/item_create.cc: Coercibility, initial stage sql/item_create.h: Coercibility, initial stage sql/item.h: Coercibility, initial stage sql/item_func.cc: Coercibility, initial stage sql/lex.h: Coercibility, initial stage sql/sql_yacc.yy: Coercibility, initial stage
* | Merge work:/my/mysql-4.1 into narttu.mysql.fi:/my/mysql-4.1unknown2003-02-2815-36/+75
|\ \
| * | Portability fixesunknown2003-02-284-22/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cmd-line-utils/libedit/readline.c: Portability fix (For IRIX) include/my_global.h: Portability fix (For Tru64) include/my_xml.h: Portability fix (True64) ('leave' is already defined) strings/xml.c: Portability fix (True64)
| * | Merge with 3.23 -> 4.0unknown2003-02-2811-12/+20
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | configure.in: Auto merged include/config-win.h: Auto merged include/thr_lock.h: Auto merged mysql-test/Makefile.am: Auto merged sql/repl_failsafe.cc: Auto merged sql/slave.cc: Auto merged sql/sql_class.cc: Auto merged sql/sql_insert.cc: Auto merged sql/sql_show.cc: Auto merged sql/log_event.cc: merge sql/mysqld.cc: merge
| | * \ Merge narttu.mysql.fi:/my/mysql-3.23 into narttu.mysql.fi:/my/mysql-4.0unknown2003-02-281-1/+3
| | |\ \ | | | | | | | | | | | | | | | | | | | | mysql-test/Makefile.am: Auto merged
| | | * | Added copying of *.slave-mi mysql-test filesunknown2003-02-281-1/+3
| | | | |
| | * | | Added detection if pthread_attr_getstacksize() existsunknown2003-02-279-11/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed bug in RAND() usage in mysqlbinlog configure.in: Added detection if pthread_attr_getstacksize() exists include/thr_lock.h: Fixed wrong comment sql/log_event.cc: Fixed bug in RAND() usage in mysqlbinlog sql/mysqld.cc: Portablity fix sql/repl_failsafe.cc: Set host_or_ip for system threads (to make other code simpler) sql/slave.cc: Set host_or_ip for system threads (to make other code simpler) sql/sql_class.cc: Set host_or_ip for system threads (to make other code simpler) sql/sql_insert.cc: Set host_or_ip for system threads (to make other code simpler) sql/sql_show.cc: Set host_or_ip for system threads (to make other code simpler)
| | * | | Add missing SIGNAL_WITH_VIO_CLOSE to fix problem with SLAVE STOP on windowsunknown2003-02-271-0/+5
| | | | |
| * | | | Portability fixesunknown2003-02-282-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | include/config-win.h: Removed wrong ; include/my_global.h: Portability fix for AIX
* | | | | func_group.result:unknown2003-02-283-35/+198
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added new tests for better coverage of min/max optimization code. func_group.test: Added new tests for better coverage of min/max optimization code. opt_sum.cc: Fixed wrong previous manual merge. Fixed bugs concerning fields used in min/max functions for which there are conditions of the form field=const. sql/opt_sum.cc: Fixed wrong previous manual merge. Fixed bugs concerning fields used in min/max functions for which there are conditions of the form field=const. mysql-test/t/func_group.test: Added new test for better coverage of min/max optimization code. mysql-test/r/func_group.result: Added new tests for better coverage of min/max optimization code.
* | | | | sql_yacc.yy:unknown2003-02-271-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | set names binary didn't work , sql/sql_yacc.yy: set names binary didn't work ,
* | | | | sql_yacc.yy, item_strfunc.cc:unknown2003-02-273-0/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Two separate functions charset() and collatio() item_strfunc.h: Two separate functions charset() and collation() sql/item_strfunc.cc: Two separate functions charset() and collatio() sql/item_strfunc.h: Two separate functions charset() and collation() sql/sql_yacc.yy: Two separate functions charset() and collatio()
* | | | | fixed bug on case insensetive file systemsunknown2003-02-271-2/+2
| | | | |
* | | | | Merge ibabaev@work.mysql.com:/home/bk/mysql-4.1unknown2003-02-271-1/+45
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into hundin.mysql.fi:/home/igor/dev/mysql-4.1
| * | | | | field.cc:unknown2003-02-271-1/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now all text fields convert data into proper charset before storing sql/field.cc: Now all text fields convert data into proper charset before storing
* | | | | | Merge ibabaev@work.mysql.com:/home/bk/mysql-4.1unknown2003-02-273-293/+1014
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | into hundin.mysql.fi:/home/igor/dev/mysql-4.1
| * | | | | func_group.result, func_group.test:unknown2003-02-273-293/+1014
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added tests for extended max/min optimization opt_sum.cc: Extended min/max optimization sql/opt_sum.cc: Extended min/max optimization mysql-test/t/func_group.test: Added tests for extended max/min optimization mysql-test/r/func_group.result: Added tests for extended max/min optimization
* | | | | ctype_many.test:unknown2003-02-272-128/+128
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Insert constants with an explicit character set ctype_many.result: Fix according test change mysql-test/r/ctype_many.result: Fix according test change mysql-test/t/ctype_many.test: Insert constants with an explicit character set
* | | | | field.cc:unknown2003-02-271-5/+5
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | rename len -> length, to look in common style sql/field.cc: rename len -> length, to look in common style
* | | | Merge work:/my/mysql-4.1 into narttu.mysql.fi:/my/mysql-4.1unknown2003-02-2735-72/+215
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | sql/item_func.cc: Auto merged sql/lex.h: Auto merged sql/sql_show.cc: Auto merged
| * \ \ \ Merge with 4.0unknown2003-02-276-17/+23
| |\ \ \ \ | | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mysql-test/r/bigint.result: Auto merged mysql-test/t/bigint.test: Auto merged sql/ha_innodb.cc: Auto merged sql/sql_lex.cc: Auto merged sql/sql_load.cc: Auto merged sql/item.h: merge (use local copy) sql/sql_show.cc: merge
| | * | | Integer values between 9223372036854775807 and 9999999999999999999 are nowunknown2003-02-274-9/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | regarded as unsigned longlongss, not as floats. This make these values work similar to values between 10000000000000000000 and 18446744073709551615. mysql-test/r/bigint.result: Fixed results for bigints mysql-test/t/bigint.test: Fixed results for bigints sql/item.h: Mark unsigned big ints as unsigned sql/sql_lex.cc: Returns numbers between 9223372036854775807 and 9999999999999999999 as unsigned 64 bit numbers
| | * | | Code cleanupunknown2003-02-271-8/+3
| | | | |
| | * | | Merge work:/my/mysql-4.0 into narttu.mysql.fi:/my/mysql-4.0unknown2003-02-261-1/+2
| | |\ \ \
| | | * \ \ Merge narttu.mysql.fi:/my/mysql-3.23 into narttu.mysql.fi:/my/mysql-4.0unknown2003-02-261-1/+2
| | | |\ \ \ | | | | |/ / | | | | | | | | | | | | | | | | | | sql/sql_show.cc: Auto merged
| | | | * | Fix for SHOW TABLE STATUS with empty .frm fileunknown2003-02-261-1/+1
| | | | | |