An error occurred fetching the project authors.
- 18 Jun, 2004 1 commit
-
-
guilhem@mysql.com authored
mysqld >=4.1.3 will however understand shutdown requests sent by clients <4.1.3. And mysqld <4.1.3 will understand shutdown requests sent by clients >=4.1.3 (it will ignore the level). Those shutdown level are just PLACEHOLDERS now. So this change is just to make the 4.1 API suitable before it is frozen. Later we will actually implement the shutdown levels.
-
- 15 Jun, 2004 1 commit
-
-
guilhem@mysql.com authored
Server will however still accept shutdown without specified level; so that old mysqladmin can still shut server down. I would like your comments on the names of shutdown level which I chose. You are welcome to propose better names. Please however check WL#709 before. Reason for the names I propose is to be accurate, thus leaving possibility for other levels which we may imagine in the future; that's why I have rejected names like "fast", "smart", "graceful" so far. My position is that WAIT_ALL_BUFFERS or WAIT_CRITICAL_BUFFERS say what the shutdown does, whereas for "smart", "fast" you need to remember what it does. This should be pushed in 4.1.3 but only after your comments.
-
- 11 Jun, 2004 1 commit
-
-
konstantin@mysql.com authored
reset mysql->status if there was an error in row reading.
-
- 10 Jun, 2004 1 commit
-
-
konstantin@mysql.com authored
some reason wasn't included before. A lot of files cleaned up from #include <assert.h>
-
- 08 Jun, 2004 1 commit
-
-
konstantin@mysql.com authored
is broken (prepared statements)": fixed date handling in many places of prepared statements code.
-
- 05 Jun, 2004 2 commits
-
-
konstantin@mysql.com authored
-
konstantin@mysql.com authored
-
- 02 Jun, 2004 1 commit
-
-
monty@mysql.com authored
Added new windows configuration
-
- 31 May, 2004 1 commit
-
-
hf@deer.(none) authored
-
- 26 May, 2004 2 commits
-
-
hf@deer.(none) authored
-
monty@mysql.com authored
Applied patches for Netware
-
- 24 May, 2004 2 commits
-
-
monty@mysql.com authored
Update of VC++ project files.
-
konstantin@mysql.com authored
after Monty's review. - Item_param was rewritten. - it turns out that we can't convert string data to character set of connection on the fly, because they first should be written to the binary log. To support efficient conversion we need to rewrite prepared statements binlogging code first.
-
- 15 May, 2004 1 commit
-
-
hf@deer.(none) authored
-
- 07 May, 2004 1 commit
-
-
georg@beethoven.local authored
to allow binding of userland functions in PHP.
-
- 06 May, 2004 2 commits
-
-
monty@mysql.com authored
Change strtoll -> my_strtoll10() Fixed bug in my_strntoul() and my_strntol() where we got different values on 32 and 64 bit systems (Bug #3472)
-
konstantin@mysql.com authored
-
- 04 May, 2004 1 commit
-
-
monty@mysql.com authored
Fixed security problem that password was temporarly reset when someone changed GRANT for a user. (Bug #3404) Fixed problem with PROCEDURE analyse() and impossible WHERE (Bug #2238) Don't auto-repair tables in mysqlcheck if table type doesn't support 'check' command.
-
- 30 Apr, 2004 2 commits
-
-
monty@mysql.com authored
Only calculate MYSQL_FIELD->max_length if mysql_stmt_attr_set(..., STMT_ATTR_UPDATE_MAX_LENGTH) is done.
-
monty@mysql.com authored
Added checking of cut read lines in bootstrap thread (Bug #2874)
-
- 29 Apr, 2004 2 commits
-
-
konstantin@mysql.com authored
flag is sent to server with placeholder types. There were no need to extend the protocol as one additional byte was reserved for placeholder code, when placeholder code is in range 0-255. So this byte is now used for flags. Post-review fixes added.
-
konstantin@mysql.com authored
requested by Monty for Bug#1647 (No way to determine what size blob/clob is being returned into bound buffer)
-
- 28 Apr, 2004 1 commit
-
-
monty@mysql.com authored
mysql_stmt_reset() now resets param->long_data_used Abort if --defaults-file=path-name uses a non-existing file (Bug #3413) Fixed problem with symlink test (bug in 4.1.2)
-
- 30 Mar, 2004 1 commit
-
-
konstantin@dragonfly.local authored
implemented in the client library and server. Warning: this makes the new client library and server incompatible with all previous versions and 5.0.
-
- 28 Mar, 2004 1 commit
-
-
konstantin@mysql.com authored
No need to check for result existence any more, store_result functions now are shorter. cli_read_binary_rows rewritten to handle MYSQL_DATA directly.
-
- 26 Mar, 2004 1 commit
-
-
serg@serg.mylan authored
-
- 25 Mar, 2004 1 commit
-
-
monty@mysql.com authored
-
- 23 Mar, 2004 1 commit
-
-
jcole@mugatu.jcole.us authored
-
- 17 Mar, 2004 1 commit
-
-
konstantin@mysql.com authored
client library: - implemented 'check_license' function
-
- 15 Mar, 2004 1 commit
-
-
konstantin@mysql.com authored
flaws list) TODO: * verify that no sequence of API calls produces SIGSEGV. That is, verify that mysql_stmt_init -> mysql_stmt_fetch is OK, or mysql_stmt_prepare -> mysql_stmt_fetch_column is OK and sets meaningful error. * remove alloc_stmt_fields call * revise stmt->state codes and statement states. * there are other items in prepared statements 'to fix' document. Done: - cleanups and comments - revision of prepared statement error codes. - mysql_stmt_prepare is now can always be called (that is, you can reprepare a statement) - new implementation of mysql_stmt_close and fetch cancellation
-
- 12 Mar, 2004 1 commit
-
-
konstantin@oak.local authored
set_mysql_error is deployed
-
- 10 Mar, 2004 1 commit
-
-
konstantin@oak.local authored
read_statistic -> read_statistics (statistic is adjective)
-
- 05 Mar, 2004 2 commits
-
-
konstantin@mysql.com authored
-
konstantin@mysql.com authored
Renames: mysql_bind_param -> mysql_stmt_bind_param mysql_bind_result -> mysql_stmt_bind_result mysql_execute -> mysql_stmt_execute mysql_fetch -> mysql_stmt_fetch mysql_fetch_column -> mysql_stmt_fetch_column mysql_get_metadata -> mysql_stmt_result_metadata mysql_param_count -> mysql_stmt_param_count mysql_param_result -> mysql_stmt_param_metadata mysql_prepare -> mysql_stmt_prepare mysql_send_long_data -> mysql_stmt_send_long_data client_test.c cleaned up from memory leaks
-
- 20 Feb, 2004 2 commits
-
-
monty@mashka.mysql.fi authored
-
hf@deer.(none) authored
Problem was that we checked for existing connection in stmt_close and did not free(stmt) if it's closed (that didn't work well with embedded) I just added new flag to the stmt_close and now we check it instead of connection
-
- 19 Feb, 2004 2 commits
-
-
monty@mysql.com authored
-
serg@serg.mylan authored
-
- 16 Feb, 2004 1 commit
-
-
monty@mysql.com authored
Fixed that blobs >16M can be inserted/updated Fixed bug when doing CREATE TEMPORARY TABLE ... LIKE
-
- 14 Feb, 2004 1 commit
-
-
hf@deer.(none) authored
now it's working
-