An error occurred fetching the project authors.
- 24 Oct, 2006 1 commit
-
-
holyfoot/hf@mysql.com/deer.(none) authored
the incompatibility was caused by current_stmt member added to the MYSQL structure. It's possible to move it to THD structure instead which saves ABI
-
- 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
-
- 02 Jun, 2006 1 commit
-
-
holyfoot@deer.(none) authored
-
- 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.
-
- 27 Sep, 2005 1 commit
-
-
dlenev@mysql.com authored
acl_init". Updated calls to acl_init()/grant_init() in init_embedded_server() - their signatures were changed recently, now they don't need argument for passing pointer to THD object (this code was only compiled if one built embedded server library with --with-embedded-privilege-control switch).
-
- 28 Jul, 2005 1 commit
-
-
hf@deer.(none) authored
-
- 27 Jul, 2005 2 commits
-
-
hf@deer.(none) authored
-
hf@deer.(none) authored
-
- 26 Jul, 2005 1 commit
-
-
hf@deer.(none) authored
-
- 11 Jan, 2005 1 commit
-
-
konstantin@mysql.com authored
statements": no test case, the test case is there already, libmysqld/examples/client_test.c, we just need to run it on a daily basis.
-
- 21 Dec, 2004 2 commits
-
-
hf@deer.(none) authored
-
hf@deer.(none) authored
-
- 19 Dec, 2004 1 commit
-
-
konstantin@mysql.com authored
library: stmt_update_metadata (used when we update max_length in mysql_stmt_store_result) needs valid row->length.
-
- 23 Aug, 2004 1 commit
-
-
hf@deer.(none) authored
In this case we have to clear thd->data after errorneous query. So i just move thd->data cleanup to emb_advanced_command
-
- 19 Aug, 2004 1 commit
-
-
hf@deer.(none) authored
-
- 30 Jul, 2004 1 commit
-
-
serg@serg.mylan authored
-
- 22 Jul, 2004 2 commits
-
-
hf@deer.(none) authored
-
hf@deer.(none) authored
#4700 (Unsigned value returned as signed) just no appropriate checking #4701 (Errors returned earlier than expected) all errors returned from send_command() #4702 (Result isn't freed properly if there's no retrieval) flush_use_result has only 'client' version and should be made 'virtual'
-
- 18 Jun, 2004 1 commit
-
-
dlenev@brandersnatch.localdomain authored
Added basic per-thread time zone functionality (based on public domain elsie-code). Now user can select current time zone (from the list of time zones described in system tables). All NOW-like functions honor this time zone, values of TIMESTAMP type are interpreted as values in this time zone, so now our TIMESTAMP type behaves similar to Oracle's TIMESTAMP WITH LOCAL TIME ZONE (or proper PostgresSQL type). WL#1266 "CONVERT_TZ() - basic time with time zone conversion function". Fixed problems described in Bug #2336 (Different number of warnings when inserting bad datetime as string or as number). This required reworking of datetime realted warning hadling (they now generated at Field object level not in conversion functions). Optimization: Now Field class descendants use table->in_use member instead of current_thd macro.
-
- 09 Jun, 2004 1 commit
-
-
hf@deer.(none) authored
server crashed checking thd->priv_user[0] and thd->priv_user is NULL if NO_EMBEDDED_ACCESS_CHECKS is on. Now i set it to be the same as thd->user
-
- 26 May, 2004 2 commits
-
-
monty@mysql.com authored
-
hf@deer.(none) authored
-
- 19 May, 2004 1 commit
-
-
monty@mysql.com authored
Ensured that all projects compile Removed compiler warnings Better setting of server_version variable. Fix that make_win_src_distribution creates the privilege tables.
-
- 17 May, 2004 1 commit
-
-
hf@deer.(none) authored
missing)
-
- 15 May, 2004 1 commit
-
-
hf@deer.(none) authored
-
- 05 Apr, 2004 1 commit
-
-
monty@mysql.com authored
Fixed bugs in group_concat with ORDER BY and DISTINCT (Bugs #2695, #3381 and #3319) Fixed crash when doing rollback in slave and the io thread catched up with the sql thread Set locked_in_memory properly
-
- 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.
-
- 27 Mar, 2004 1 commit
-
-
hf@deer.(none) authored
we should call check_user in NO_EMBEDDED_ACCESS_CHECKS case to do necessary initializations
-
- 18 Mar, 2004 1 commit
-
-
monty@mysql.com authored
Changed _XXX to _MY_XXX to solve conflict problem on Mac OS X
-
- 13 Mar, 2004 1 commit
-
-
hf@deer.(none) authored
We just tried to open binlog's file twice in embedded server
-
- 10 Mar, 2004 1 commit
-
-
konstantin@oak.local authored
read_statistic -> read_statistics (statistic is adjective)
-
- 02 Mar, 2004 1 commit
-
-
acurtis@pcgem.rdg.cyberkinetica.com 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
-
- 13 Feb, 2004 2 commits
-
-
hf@deer.(none) authored
-
hf@deer.(none) authored
previous one had error
-
- 12 Feb, 2004 1 commit
-
-
hf@deer.(none) authored
-
- 10 Feb, 2004 1 commit
-
-
hf@deer.(none) authored
now we execute only one first select during mysql_real_query others - during 'mysql_next_result'
-
- 27 Jan, 2004 2 commits
-
-
hf@deer.(none) authored
mysql->server_status wasn't set after the query
-
hf@deer.(none) authored
code slightly modified with Monty's suggestions
-