summaryrefslogtreecommitdiff
path: root/sql/hostname.cc
Commit message (Collapse)AuthorAgeFilesLines
* Fix shortcircuit of 127.0.0.1 -> localhost lookup on little-endian machines. ↵joerg@mysql.com2005-07-271-2/+2
| | | | | | (Bug #11822) (Originally: 1.1891 05/07/25 12:07:47 jimw@mysql.com )
* Handle systems where 127.0.0.1 doesn't always map to 'localhost'jimw@mysql.com2005-07-181-1/+9
| | | | first. (Bug #11822)
* Fixes during reviewmonty@mysql.com2005-05-131-2/+2
|
* A fix for Bug#8467.jani@ibmlab.site2005-05-061-4/+8
|
* - fixed typo in variable name that caused compile errors on many platforms ↵lenz@mysql.com2005-05-061-1/+1
| | | | (tmp_error -> tmp_errno)
* CAST(string_argument AS UNSIGNED) didn't work for big integers above the ↵monty@mysql.com2005-04-291-1/+8
| | | | | | | | signed range. (Bug #7036) Produce warnings of wrong cast of strings to signed/unsigned. Don't block not resolved IP's if DNS server is down (Bug #8467) Fix compiler problems with MinGW (Bug #8872)
* fix for --open-files-limit and broken query_cache_merge.testserg@serg.mylan2004-02-201-3/+0
|
* Don't flush cur_log (relay log) on flush_relay_log_info becasue this crashes ↵monty@mysql.com2003-11-221-4/+8
| | | | | | | | the server if cur_log is 'hot' and the io_thread has changed log file. Updated project files for windows Made rpl_change_master.test portable Ensure that mutex are not freed if not initilized
* sql_acl.cc, item.h:bar@bar.mysql.r18.ru2003-03-071-1/+2
| | | | | | | | | | | | use of new argument sql_analyse.h: macros from mysql_priv.h. Should be deleted soon. mysql_priv.h: _default_charset_info has been removed item_cmpfunc.h: Use cmp_charset hostname.cc, hash_filo.h: Move charset to constructor argument
* Merge with 4.0.11monty@mashka.mysql.fi2003-02-041-0/+2
|\
| * Fixes for Netwaremonty@mashka.mysql.fi2003-01-281-0/+2
| | | | | | | | | | | | | | | | 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
* | Move latin1 into a separarte filebar@bar.mysql.r18.ru2003-01-291-2/+2
| |
* | removed several cases of default_charset_info use bar@bar.mysql.r18.ru2002-12-191-2/+2
| | | | | | | | a bit more ucs2 compatibility
* | Merge with 4.0monty@mashka.mysql.fi2002-11-211-1/+1
|\ \ | |/
| * 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.3monty@narttu.mysql.fi2002-08-301-2/+2
|\ \ | |/ |/| | | | | | | | | | | | | Some simple optimzations, more comments and indentation changes. Add ` around database in 'use database' in binary log. Moved max_error_count and max_warning_count to variables struct. Removed SHOW_WARNS_COUNT and SHOW_ERRORS_COUNT calls. Changed string functions to use character set of first string argument as default return characterset (Each string function can change the above assumption if needed)
| * merge with 4.0 to get last fixes to last mergemonty@hundin.mysql.fi2002-06-041-1/+1
| |\
| * \ merge with 4.0monty@hundin.mysql.fi2002-06-031-2/+10
| |\ \
| * | | New ctype functions/macros to support many charsets at a timebar@gw.udmsearch.izhnet.ru2002-03-121-2/+2
| | | |
* | | | Removed mysql_ssl_clear() monty@hundin.mysql.fi2002-06-271-2/+2
| |_|/ |/| | | | | | | | | | | | | | | | | Added statistics information for alarms (for bug tracking) Don't store "incomplete" in the xxx.cfg file if we are not using --restart. (Crash-me) Enlarged STACK_BUF_ALLOC becasue of failed crash-me test Aded new script mysql_tableinfo to make a system directory.
* | | Enable LOAD DATA LOCAL INFILE in mysql_testmonty@hundin.mysql.fi2002-06-041-1/+1
| |/ |/| | | | | | | Added syntax for column comments (for compability with 4.1) Fix of ALTER TABLE RENAME
* | Fixed bug in wait_for_relay_log_space()monty@hundin.mysql.fi2002-06-021-1/+4
| | | | | | | | Added checking of sem_init() in configure.
* | merge with 3.23.51monty@hundin.mysql.fi2002-05-161-1/+6
|\ \ | |/ |/|
| * New my_gethostbyname_r() handlingmonty@hundin.mysql.fi2002-05-161-1/+6
| | | | | | | | | | Changed some status variable names Fix bug in GRANT ... PASSWORD string
* | Update copyrightmonty@hundin.mysql.fi2001-12-061-3/+3
|/ | | | 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.
* Changed pthread_mutex_init() to use new MY_MUTEX_INIT.. macromonty@donna.mysql.fi2001-03-261-1/+1
| | | | (For glibc 2.2)
* Lots of manual changesmonty@donna.mysql.com2001-01-251-1/+1
| | | | Changed 'static inline' to 'inline' for SCO new's compiler
* Added new mutex for hostname lookupmonty@donna.mysql.com2001-01-231-5/+8
| | | | Added free of io_cache when using ALTER TABLE ... ORDER BY
* Fixed delete in tables with hidden primary keymonty@donna.mysql.com2000-12-121-1/+2
| | | | | | Remove not used BDB logs on shutdown Don't give warnings for repair on slaves Fixed transaction log files
* Lots of fixes for BDB tablesmonty@donna.mysql.com2000-12-081-3/+5
| | | | Change DROP TABLE to first drop the data, then the .frm file
* Only write full transactions to binary logmonty@donna.mysql.com2000-12-071-8/+10
| | | | | | A lot of new functions for BDB tables Fix for DROP DATABASE on windows Default server_id variables
* FLUSH TABLE table_listmonty@donna.mysql.com2000-08-221-1/+1
| | | | | Fixes for RENAME TABLE Portability fixes
* Import changesetbk@work.mysql.com2000-07-311-0/+235