An error occurred fetching the project authors.
- 24 May, 2007 1 commit
-
-
msvensson@pilot.blaudden authored
- The "mysql client in mysqld"(which is used by replication and federated) should use alarms instead of setting socket timeout value if the rest of the server uses alarm. By always calling 'my_net_set_write_timeout' or 'my_net_set_read_timeout' when changing the timeout value(s), the selection whether to use alarms or timeouts will be handled by ifdef's in those two functions. - Move declaration of 'vio_timeout' into "vio_priv.h"
-
- 27 Mar, 2007 1 commit
-
-
msvensson@pilot.blaudden authored
- Interpret the pointer passed to 'mysql_options' for MYSQL_OPT_SSL_VERIFY_SERVER_CERT as a my_bool - In 5.1 the mysql_options signature will be chanegd to take a 'void*' in order to further emphasize the need for a pointer to correct type
-
- 22 Mar, 2007 1 commit
-
-
jani@ua141d10.elisa.omakaista.fi authored
-
- 29 Jan, 2007 1 commit
-
-
msvensson@pilot.mysql.com authored
- Set the timeout values only where needed
-
- 23 Dec, 2006 1 commit
-
-
kent@mysql.com/kent-amd64.(none) authored
Changed header to GPL version 2 only
-
- 14 Dec, 2006 1 commit
-
-
monty@mysql.com/narttu.mysql.fi authored
- Removed not used variables and functions - Added #ifdef around code that is not used - Renamed variables and functions to avoid conflicts - Removed some not used arguments Fixed some class/struct warnings in ndb Added define IS_LONGDATA() to simplify code in libmysql.c I did run gcov on the changes and added 'purecov' comments on almost all lines that was not just variable name changes
-
- 30 Nov, 2006 1 commit
-
-
monty@mysql.com/narttu.mysql.fi authored
Fixed compiler warnings (detected by VC++): - Removed not used variables - Added casts - Fixed wrong assignments to bool - Fixed wrong calls with bool arguments - Added missing argument to store(longlong), which caused wrong store method to be called.
-
- 23 Nov, 2006 1 commit
-
-
monty@mysql.com/nosik.monty.fi authored
Fixed that --valgrind works again with mysql-test-run.sh Extended error messages when loosing connection during mysql_real_connect()
-
- 20 Nov, 2006 1 commit
-
-
monty@mysql.com/nosik.monty.fi authored
(Mostly in DBUG_PRINT() and unused arguments) Fixed bug in query cache when used with traceing (--with-debug) Fixed memory leak in mysqldump Removed warnings from mysqltest scripts (replaced -- with #)
-
- 13 Nov, 2006 1 commit
-
-
gkodinov/kgeorge@macbook.gmz authored
The server sends a number of columns to the client. It uses a limited "fast" function for that instead of the general one. This fast function cannot send numbers larger than 2 bytes. This causes the client to expect smaller number of columns. The client writes outside of the allocated memory buffer as a result. Fixed the server to use the general function to send column count. Fixed the client to check the column count before writing column data.
-
- 12 Oct, 2006 1 commit
-
-
msvensson@shellback.(none) authored
Add DBUG_PRINT to show the value of mysql->reconnect
-
- 27 Sep, 2006 1 commit
-
-
gluh@mysql.com/gluh.(none) authored
-
- 30 Aug, 2006 1 commit
-
-
gluh@mysql.com/gluh.(none) authored
Bug#21432 Database/Table name limited to 64 bytes, not chars, problems with multi-byte
-
- 25 Aug, 2006 1 commit
-
-
cmiller@zippy.cornsilk.net authored
InterfaceError on connect Removed the bool flag from the st_mysql_options struct, since it adds another word in size to the memory size and shifts member memory locations down, both of which break binary-interface compatibility. Instead, use a flag, 2**30, in the client_options bit-field to represent that the client should check the SSL certificate of the server.
-
- 11 Aug, 2006 1 commit
-
-
--with-collation worked only on the server side. Client side ignored this argument, so collation_connection was not properly set (remained latin1_swedish_ci).
-
- 24 Jul, 2006 1 commit
-
-
kostja@bodhi.local authored
when calling a SP from C API" The bug was caused by lack of checks for misuse in mysql_real_query. A stored procedure always returns at least one result, which is the status of execution of the procedure itself. This result, or so-called OK packet, is similar to a result returned by INSERT/UPDATE/CREATE operations: it contains the overall status of execution, the number of affected rows and the number of warnings. The client test program attached to the bug did not read this result and ivnoked the next query. In turn, libmysql had no check for such scenario and mysql_real_query was simply trying to send that query without reading the pending response, thus messing up the communication protocol. The fix is to return an error from mysql_real_query when it's called prior to retrieval of all pending results.
-
- 03 Jul, 2006 1 commit
-
-
kent@mysql.com authored
Define 'mysql_get_ssl_cipher' even if no SSL built in, it is referenced in libmysql.def
-
- 30 Jun, 2006 1 commit
-
-
bar@mysql.com authored
--with-collation worked only on the server side. Client side ignored this argument, so collation_connection was not properly set (remained latin1_swedish_ci).
-
- 19 Jun, 2006 1 commit
-
-
holyfoot@deer.(none) authored
there was two problems about charsets in embedded server 1. mysys/charset.c - defined there default_charset_info variable is modified by both server and client code (particularly when --default-charset option is handled) In embedded server we get two codelines modifying one variable. I created separate default_client_charset_info for client code 2. mysql->charset and mysql->options.charset initialization isn't properly done for embedded server - necessary calls added
-
- 01 Jun, 2006 1 commit
-
-
holyfoot@deer.(none) authored
There actually was 3 different problems - hash_user_connections wasn't cleaned one strdupped database name wasn't freed and stmt->mem_root wasn't cleaned as it was replased with mysql->field_alloc for result For the last one - i made the library using stmt's fields to store result if it's the case.
-
- 03 May, 2006 1 commit
-
-
msvensson@neptunus.(none) authored
Formatting
-
- 21 Apr, 2006 1 commit
-
-
msvensson@neptunus.(none) authored
- Add function mysql_get_ssl_cipher - Use function mysql_get_ssl_cipher from mysql
-
- 18 Apr, 2006 1 commit
-
-
msvensson@neptunus.(none) authored
- Add new function 'ssl_verify_server_cert' which is used if we are connecting to the server with SSL. It will compare the hostname in the server's cert against the hostname that we used when connecting to the server. Will reject the connection if hostname does not match. - Add new option "OPT_SSL_VERIFY_SERVER_CERT" to be passed to mysql_options which will turn on checking of servers cert. - Add new argument "ssl-verify-server-cert" to all mysql* clients which will activate the above option. - Generate a new server cert with 1024 bits that has "localhost" as the server name.
-
- 12 Apr, 2006 1 commit
-
-
msvensson@neptunus.(none) authored
-
- 06 Apr, 2006 2 commits
-
-
bar@mysql.com authored
as it is now required by mysql_set_character_set()
-
bar@mysql.com authored
Bug#18830 incompatibility new libraries with old server Additional 5.0 fix: applying the same patch to client.c.
-
- 27 Mar, 2006 1 commit
-
-
monty@mysql.com authored
This fixes the problem if someone is using struct MYSQL as part of another structure together with a shared library
-
- 22 Mar, 2006 1 commit
-
-
monty@mysql.com authored
5.0.18 by not reseting or accessing the info_buffer member
-
- 10 Mar, 2006 1 commit
-
-
msvensson@neptunus.(none) authored
Remove duplicate code Merge common functions Enforce MySQL coding standard
-
- 24 Feb, 2006 1 commit
-
-
monty@mysql.com authored
(Needed for "list of pushes" web page and autopush)
-
- 26 Jan, 2006 1 commit
-
-
msvensson@neptunus.(none) authored
- Move init of "reconnect" variable to mysql_init - Add test case to mysql_client_test.
-
- 03 Jan, 2006 1 commit
-
-
serg@serg.mylan authored
-
- 06 Dec, 2005 1 commit
-
-
jimw@mysql.com authored
statement that generated a warning. (Bug #15510)
-
- 21 Nov, 2005 1 commit
-
-
gluh@eagle.intranet.mysql.r18.ru authored
-
- 04 Oct, 2005 1 commit
-
-
msvensson@neptunus.(none) authored
- Added show status variable "compression" for checking that compression is turned on. - Updated show status variable "have_openssl" to be set to DISABLED if server supports ssl but it's not turned on to accept incoming ssl connections. - Setup server to accept ssl connections from clients ig that is supported by server - New tests - ssl - Run with ssl turned on - ssl_compress - Run with ssl and compression turned on - compress - Run with compression turned in - Updated test - openssl_1, rpl_openssl1 - Changed to run if server supports ssl
-
- 13 Sep, 2005 1 commit
-
-
monty@mishka.mysql.fi authored
Added flag to Field::store(longlong) to specify if value is unsigned. This fixes bug #12750: Incorrect storage of 9999999999999999999 in DECIMAL(19, 0) Fixed warning from valgrind in CREATE ... SELECT Fixed double free of mysql.options if reconnect failed
-
- 07 Sep, 2005 1 commit
-
-
SergeyV@selena. authored
-
- 11 Aug, 2005 1 commit
-
-
jimw@mysql.com authored
query that mixed statements that do and do not return info. (Bug #11688)
-
- 28 Jul, 2005 1 commit
-
-
monty@mysql.com authored
Ensure mysql_close() is called if mysql_set_character_set() fails
-
- 19 Jul, 2005 1 commit
-
-
georg@lmy002.wdf.sap.corp authored
-