An error occurred fetching the project authors.
- 26 Apr, 2005 1 commit
-
-
pem@mysql.comhem.se authored
-
- 20 Apr, 2005 1 commit
-
-
acurtis@xiphis.org authored
Fix bug and implement return type casting.
-
- 19 Apr, 2005 1 commit
-
-
acurtis@xiphis.org authored
bugfix 9102 corrected the crashing, this corrects the result.
-
- 31 Mar, 2005 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 24 Mar, 2005 1 commit
-
-
bar@mysql.com authored
in some cases, because "charset(x) = 'string'" was considered as "x is not null" due to incorrect not_null_tables().
-
- 23 Mar, 2005 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 16 Mar, 2005 1 commit
-
-
dlenev@brandersnatch.localdomain authored
Now one can use user variables as target for data loaded from file (besides table's columns). Also LOAD DATA got new SET-clause in which one can specify values for table columns as expressions. For example the following is possible: LOAD DATA INFILE 'words.dat' INTO TABLE t1 (a, @b) SET c = @b + 1; This patch also implements new way of replicating LOAD DATA. Now we do it similarly to other queries. We store LOAD DATA query in new Execute_load_query event (which is last in the sequence of events representing LOAD DATA). When we are executing this event we simply rewrite part of query which holds name of file (we use name of temporary file) and then execute it as usual query. In the beggining of this sequence we use Begin_load_query event which is almost identical to Append_file event
-
- 09 Mar, 2005 1 commit
-
-
acurtis@pcgem.rdg.cyberkinetica.com authored
-
- 04 Mar, 2005 1 commit
-
-
acurtis@pcgem.rdg.cyberkinetica.com authored
Crashes with stored procedure return non-string values Also fixes Bug#2773
-
- 02 Mar, 2005 1 commit
-
-
serg@serg.mylan authored
deadlock in MYSQL_LOG::new_file() style fixes
-
- 22 Feb, 2005 1 commit
-
-
monty@mysql.com authored
Change string->float conversion to delay division as long as possible. This gives us more exact integer->float conversion for numbers of type '123.45E+02' (Bug #7740)
-
- 19 Feb, 2005 1 commit
-
-
monty@mysql.com authored
Lots of small fixes to multi-precision-math path Give Note for '123.4e' Added helper functions type 'val_string_from_real() Don't give warnings for end space for string2decimal() Changed storage of values for SP so that we can detect length of argument without strlen() Changed interface for str2dec() so that we must supple the pointer to the last character in the buffer
-
- 17 Feb, 2005 2 commits
-
-
serg@serg.mylan authored
-
joerg@mysql.com authored
-
- 08 Feb, 2005 1 commit
-
-
hf@deer.(none) authored
-
- 24 Jan, 2005 1 commit
-
-
bell@sanja.is.com.ua authored
fixed cols() method call (it have to be called only after fix_fields())
-
- 15 Jan, 2005 1 commit
-
-
monty@mysql.com authored
Fix for BIT(X) field as string
-
- 17 Dec, 2004 1 commit
-
-
mskold@mysql.com authored
-
- 07 Dec, 2004 1 commit
-
-
monty@mysql.com authored
Fixed compiler warnings String results in CREATE ... SELECT are now created as CHAR(0), VARCHAR(X) or TEXT() depending on item->max_length
-
- 28 Nov, 2004 1 commit
-
-
serg@serg.mylan authored
fixed a bug that it discovered
-
- 26 Nov, 2004 1 commit
-
-
monty@mysql.com authored
(Cleanups and better bug fixes)
-
- 11 Nov, 2004 1 commit
-
-
konstantin@mysql.com authored
-
- 02 Nov, 2004 1 commit
-
-
bar@mysql.com authored
Allow mixing of different character sets for more SQL functions. item_func.h: Allow mixing of different character sets for more SQL functions..
-
- 29 Oct, 2004 1 commit
-
-
bar@mysql.com authored
constant with a column. The string is converted into the column character set. It conversion doesn't lose data, then operation is possible. Otherwise, give an error, as it was earlier.
-
- 22 Oct, 2004 1 commit
-
-
monty@mysql.com authored
Fixed checking of privilege handling in CREATE ... SELECT (Bug #6094)
-
- 13 Oct, 2004 1 commit
-
-
konstantin@mysql.com authored
crashes server." The fix makes Item_func_rand prepared-statements aware plus it fixes the case when RAND is used in prepared statements and replication is on (as well as several similar issues). Until now we did not reset THD before every execution of a prepared statement, so if some execution had set thd->time_zone_used or thd->rand_used they would not be reset until next mysql_parse. Some of post-review fixes done.
-
- 08 Oct, 2004 1 commit
-
-
konstantin@mysql.com authored
doesn't need to have it's own recovery mechanism.
-
- 28 Sep, 2004 1 commit
-
-
monty@mishka.local authored
Under strict mode MySQL will generate an error message if there was any conversion when assigning data to a field. Added checking of date/datetime fields. If strict mode, give error if we have not given value to field without a default value (for INSERT)
-
- 09 Sep, 2004 1 commit
-
-
pem@mysql.comhem.se authored
-
- 07 Sep, 2004 2 commits
-
-
dlenev@brandersnatch.localdomain authored
Mostly needed for Monty for him getting notion what needed for triggers from new .FRM format. Things to be done: - Right placement of trigger's invocations - Right handling of errors in triggers (including transaction rollback) - Support for priviliges - Right handling of DROP/RENAME table (hope that it will be handled automatically with merging of .TRG into .FRM file) - Saving/restoring some information critical for trigger creation and replication with their definitions (e.g. sql_mode, creator, ...) - Replication Already has some known bugs so probably not for general review.
-
bar@mysql.com authored
-
- 01 Sep, 2004 1 commit
-
-
bar@mysql.com authored
-
- 31 Jul, 2004 1 commit
-
-
serg@serg.mylan authored
-
- 22 Jun, 2004 1 commit
-
-
pem@mysql.comhem.se authored
-
- 11 Jun, 2004 1 commit
-
-
igor@rurik.mysql.com authored
new file Many files: Nested joins added.
-
- 04 May, 2004 1 commit
-
-
pem@mysql.comhem.se authored
-
- 02 Apr, 2004 1 commit
-
-
dlenev@jabberwock.localdomain authored
Final version of patch. Adds support for specifying of DEFAULT NOW() and/or ON UPDATE NOW() clauses for TIMESTAMP field definition. Current implementation allows only one such field per table and uses several unireg types for storing info about this properties of field. It should be replaced with better implementation when new .frm format is introduced.
-
- 25 Mar, 2004 1 commit
-
-
pem@mysql.comhem.se authored
This turned out to be a problem for prepared statements as well; the id was evaluated once, at parse time.
-
- 19 Mar, 2004 1 commit
-
-
pem@mysql.comhem.se authored
Phase 3: Made qualified names work for functions as well.
-
- 18 Mar, 2004 1 commit
-
-
bell@sanja.is.com.ua authored
small optimisation in signed_literal
-