summaryrefslogtreecommitdiff
path: root/sql/sql_udf.cc
Commit message (Collapse)AuthorAgeFilesLines
* Fix typos in Bug#6776acurtis@xiphis.org2005-04-091-2/+2
|
* Merge xiphis.org:/var/db/bk/work-acurtis/bug6776acurtis@xiphis.org2005-04-081-2/+5
|\ | | | | | | into xiphis.org:/var/db/bk/work-acurtis/bug6776.1
| * Bug#6776acurtis@pcgem.rdg.cyberkinetica.com2005-03-071-2/+5
| | | | | | | | | | Failure to delete rows from mysql.func table caused by missing charset conversion for index read by pk.
* | after merge fixesserg@serg.mylan2005-03-031-7/+7
| |
* | mergeserg@serg.mylan2005-03-031-36/+69
|\ \ | |/ |/|
| * Fixes for bugs reported by Stefano Di Paola (stefano.dipaola@wisec.it)serg@serg.mylan2005-03-031-31/+67
| |
* | sql_print_error cleanupserg@serg.mylan2004-09-041-2/+1
| |
* | Fix for bug#1439 UDF Corruptiongluh@gluh.mysql.r18.ru2004-03-191-2/+6
| |
* | Merge with 4.0.18monty@mysql.com2004-02-111-5/+6
|\ \ | |/
| * Added testing of pthread_key_delete (to fix compile problem on SCO) (Bug #2461)monty@mysql.com2004-02-051-5/+6
| | | | | | | | | | | | DROP DATABASE now assumes RAID directories are in hex. (Bug #2627) Don't increment 'select_full_range' and similar statistics for EXPLAIN queries. (Bug #2506) Test in configure if pthread_key_delete() exists (to fix compile problem on SCO) (Bug #2461)
* | now all tables of query are locked in one place (including derived tables)bell@sanja.is.com.ua2004-02-011-1/+1
| | | | | | | | fixed BUG#2120 and other problem with EXPLAINing derived tables
* | merge with 4.0 for more memory allocation variables.monty@mashka.mysql.fi2003-10-131-1/+1
|\ \ | |/
| * Add new user variables for tuning memory usage:monty@mashka.mysql.fi2003-10-111-1/+1
| | | | | | | | | | query_alloc_block_size, query_prealloc_size, range_alloc_block_size,transaction_alloc_block_size and transaction_prealloc_size Add more checks for "out of memory" detection in range optimization
* | SCRUMhf@deer.(none)2003-09-191-1/+1
| | | | | | | | | | | | | | embedded library hash_insert renamed to my_hash_insert to avoid name intersection with another libraries is there better idea?
* | hanged UDF interface to use clear() instead of reset()monty@narttu.mysql.fi2003-08-271-4/+7
| |
* | INSERT ... UPDATE ... VALUES()serg@serg.mylan2003-05-031-1/+1
| |
* | Some optimization in CHARSET_INFO:bar@bar.mysql.r18.ru2003-04-011-2/+1
| | | | | | | | | | We don't need separate hash_sort() and hash_caseup() We don't need tosort(). strnxfrm will do the same.
* | sql_udf.cc, protocol.cc:bar@bar.mysql.r18.ru2003-02-261-2/+2
| | | | | | | | Less default_charset_info
* | Fixed a lot of wrong memory references as reported by valgrindmonty@mashka.mysql.fi2003-02-121-2/+2
| | | | | | | | | | | | | | | | | | Portability fixes Added new client function: mysql_get_server_version() New server help code (From Victor Vagin) Fixed wrong usage of binary() Disabled RTREE usage for now.
* | After merge fixes & remove compiler warningsmonty@mashka.mysql.fi2003-02-071-1/+1
| | | | | | | | | | Added lengths for all MYSQL_FIELD string parameters Changed field length to 2 byte in .frm files
* | Merge with 4.0.11monty@mashka.mysql.fi2003-02-041-1/+6
|\ \ | |/
| * Only write to the error log if --log-error is specified and --console is not ↵monty@mashka.mysql.fi2003-01-281-1/+1
| | | | | | | | | | | | | | specified (On Windows --log-error is enabled by default)
| * Fixes for Netwaremonty@mashka.mysql.fi2003-01-281-0/+5
| | | | | | | | | | | | | | | | Call pthread_mutex_destroy() on not used mutex. Changed comments in .h and .c files from // -> /* */ Added detection of mutex on which one didn't call pthread_mutex_destroy() Fixed bug in create_tmp_field() which causes a memory overrun in queries that uses "ORDER BY constant_expression" Added optimisation for ORDER BY NULL
* | correct parameter of hash_searchwax@mysql.com2003-01-281-1/+1
| |
* | correct parameter of hash_resultwax@mysql.com2003-01-261-1/+1
| | | | | | | | (SCRUM)
* | change structure of udf_func and parameter of functions mysql_drop_func and ↵wax@mysql.com2003-01-091-24/+25
| | | | | | | | add_func (SCRUM)
* | Change locks in sql_udf.cc to rw_locks (SCRUM)wax@mysql.com2002-12-311-13/+14
| |
* | Merge with 4.0.6monty@mashka.mysql.fi2002-12-051-0/+2
|\ \ | |/
| * Removed copying of parameters as this leads to memory leaks in embedded server.monty@mashka.mysql.fi2002-12-051-0/+2
| | | | | | | | Fixed 'not initialized' memory error.
* | Merge with 4.0monty@mashka.mysql.fi2002-11-211-2/+2
|\ \ | |/
| * Portability fix extern "C" static -> extern "C"monty@hundin.mysql.fi2002-11-071-2/+2
| |
| * Portability fixes for Fortre C++ 5.0 (on Sun) in 32 and 64 bit modes.monty@butch.2002-11-071-1/+1
| |
* | Merge with 4.0.4monty@mashka.mysql.fi2002-10-021-13/+14
|\ \ | |/ |/|
| * Fixes and code cleanups after merge with 4.0.3monty@mashka.mysql.fi2002-10-021-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Warning handling and initial prepared statement handling (last not complete yet) Changed a lot of functions that returned 0/1 to my_bool type. GRANT handling now uses read/write locks instead of mutex Change basic net functions to use THD instead of NET (needed for 4.1 protocol) Use my_sprintf instead of sprintf() + strlen() Added alloc_query() to be able to chare query initialization code with prepared statements. Cleanup handling of SHOW COUNT(*) WARNINGS and SELECT LAST_INSERT_ID() Note that the following test fails (will be fixed ASAP): sub_select, union, rpl_rotate_logs and rpl_mystery22
| * Now string values are created and filled with charset fieldbar@gw.udmsearch.izhnet.ru2002-05-171-2/+2
| | | | | | | | SELECT func(charset2) FROM t ORDER BY 1 works in correct charset
| * Hash now supports several charsetsbar@gw.udmsearch.izhnet.ru2002-03-141-1/+2
| |
* | Merge with 3.23.53monty@mashka.mysql.fi2002-09-221-1/+1
|\ \
| * | Change name -> alias in TABLE_LIST.monty@mashka.mysql.fi2002-09-211-3/+3
| | | | | | | | | | | | Added missing mutex-lock around critical section in GRANT handling.
* | | Changed table_list->name -> table_list->alias to find places where we where ↵monty@mashka.mysql.fi2002-09-201-3/+3
| | | | | | | | | | | | | | | | | | using alias instead of table_name. This should fix some issues where --lower-case-table-names doesn't work properly under windows.
* | | Portability fixes.monty@mashka.mysql.fi2002-09-111-6/+8
| | | | | | | | | | | | | | | | | | | | | Improve mysql-test to be more robust. Fix that GRANT doesn't delete SSL options Change innobase_flush_log_at_trx_commit to uint. Don't rotate logs if we read a rotate log entry from the master.
* | | Fixed searching after ssl directories.monty@mashka.mysql.fi2002-09-051-28/+34
| |/ |/| | | | | | | | | | | | | | | | | | | Fixed that GRANT ... REQUIRE options are not forgot when doing new GRANT Changed fn_ext to point at first '.' after directory. FLUSH LOGS removed numerical extension for all future update logs. Fixed the mysqld --help reports right values for --datadir and --bind-address --log-binary=a.b.c now properly strips of .b.c Fix that one can DROP UDF functions that was not loaded at startup Made AND optional in REQUIRE Added REQUIRE NONE
* | Cleanup of alarm macros.monty@hundin.mysql.fi2001-12-211-1/+2
| | | | | | | | | | Fixed data corruption bug in query cache. Made queries be dependent of the database in use.
* | Update copyrightmonty@hundin.mysql.fi2001-12-061-8/+6
|/ | | | Fixed memory leak on shutdown (Affects the embedded version & MyODBC)
* Fixes for OS2.monty@hundin.mysql.fi2001-08-221-1/+1
| | | | | Fix bug in isamlog Add argument types to function declarations.
* Fixed INSERT DELAYED with Innobasemonty@donna.mysql.fi2001-04-091-5/+24
| | | | | Fix for shutdown on NT Fixed bug when using wrong dates from blob field.
* Changed pthread_mutex_init() to use new MY_MUTEX_INIT.. macromonty@donna.mysql.fi2001-03-261-1/+1
| | | | (For glibc 2.2)
* Update to new root alloc, OPTIMIZE TABLE and some other changesmonty@donna.mysql.com2000-09-121-3/+3
|
* FLUSH TABLE table_listmonty@donna.mysql.com2000-08-221-5/+5
| | | | | Fixes for RENAME TABLE Portability fixes
* Import changesetbk@work.mysql.com2000-07-311-0/+471