An error occurred fetching the project authors.
- 11 Feb, 2004 1 commit
-
-
pem@mysql.comhem.se authored
-
- 09 Feb, 2004 1 commit
-
-
monty@mysql.com authored
Fixed output from mysqlbinlog when using --skip-comments Fixed warnings from valgrind Fixed ref_length when used with HEAP tables More efficent need_conversion() Fixed error handling in UPDATE with not updateable tables Fixed bug in null handling in CAST to signed/unsigned
-
- 02 Feb, 2004 1 commit
-
-
igor@rurik.mysql.com authored
Fixed bug #2602 in CACHE INDEX, LOAD INDEX
-
- 28 Jan, 2004 1 commit
-
-
serg@serg.mylan authored
-
- 27 Jan, 2004 1 commit
-
-
pem@mysql.comhem.se authored
Moved the UDF and stored procedure lookup from sql_lex.cc to sql_yacc.yy. This will improve performance (since we don't have to check for stored functions in the lexer all the time), and make it possible to implement db qualified SPs.
-
- 26 Jan, 2004 2 commits
-
-
guilhem@gbichot2.local authored
-
guilhem@gbichot2.local authored
-
- 23 Jan, 2004 1 commit
-
-
hf@deer.(none) authored
wl #1163 (Make spatial code optional) Patch I cleaned with Serg & Monty's suggestions
-
- 22 Jan, 2004 1 commit
-
-
Sinisa@sinisa.nasamreza.org authored
CONVERT(expr, expr, expr);
-
- 18 Jan, 2004 1 commit
-
-
acurtis@pcgem.rdg.cyberkinetica.com authored
-
- 15 Jan, 2004 1 commit
-
-
hf@deer.(none) authored
WL#1163 (Making spatial code optional) Pack of changes to do in sql/ code.
-
- 14 Jan, 2004 2 commits
-
-
pem@mysql.comhem.se authored
(This might not be enough, could be more statements that must be detected...)
-
pem@mysql.comhem.se authored
Found a few more places in the parser (insert, replace and update) where local stored procedure variables should not be recognized.
-
- 08 Jan, 2004 1 commit
-
-
pem@mysql.comhem.se authored
Parse column names (and not variables) only in UPDATE ... SET ...
-
- 04 Jan, 2004 1 commit
-
-
bell@sanja.is.com.ua authored
allow UPDATE and DELETE stetements with tables derived from subquery if they are not updated (BUG#2117) allow delete table by alias in multi-delete statement
-
- 30 Dec, 2003 1 commit
-
-
hf@deer.(none) authored
Here i added Item_*::cleanup() functions, removed a lot of ~Item_*'s, added code to restore order_list and group_list
-
- 19 Dec, 2003 3 commits
-
-
konstantin@oak.local authored
All tests pass (client_test included)
-
konstantin@oak.local authored
-
monty@mysql.com authored
Cleaned up embedded library access and query cache handling Changed min stack size to 128K (to allow longer MyISAM keys) Fixed wrong priority for XOR (should be less than NEG to get -1^1 to work)
-
- 17 Dec, 2003 1 commit
-
-
New Statement: SHOW [STORAGE] ENGINES New System Variable: storage_engine New mysqld Argument: --default-storage-engine=
-
- 15 Dec, 2003 1 commit
-
-
pem@mysql.comhem.se authored
-
- 13 Dec, 2003 1 commit
-
-
pem@mysql.comhem.se authored
(Also put the hostpart back in the definer column.)
-
- 12 Dec, 2003 1 commit
-
-
pem@mysql.comhem.se authored
make characteristics (and SHOW) work right, we had to separate the old definition blob in the mysql.proc table into separate fields for parameters, return type, and body, and handle the characteristics (like SQL SECURITY) separately... and then reassemble the CREATE string for parsing, of course. This is rather ugly, mostly the parser bit. (Hopefully that will be better with the new parser.)
-
- 11 Dec, 2003 3 commits
-
-
-
monty@mysql.com authored
mysql_server_init() now returns error code if something went wrong (Bug #2062) Don't use my_fopen() when reading symlink information as this may cause problems when a lot of files are opened. Free thread keys with pthread_key_delete() instead of relying on automatic free. (Bug #2062) Fixed bug in UNION statement with alias '*'. (Bug #1249) Fixed a bug in DELETE ... ORDER BY ... LIMIT where the rows where not deleted in the proper order. (Bug #1024). FOUND_ROWS() could return incorrect number of rows after a query with an impossible WHERE condition. HOW DATABASES doesn't anymore show .sym files (on windows) that doesn't point to a valid directory. (Bug #1385)
-
Allow numeric literals have a sign
-
- 10 Dec, 2003 2 commits
-
-
pem@mysql.comhem.se authored
Also made the parsing and handling of SP characteristics more general and extendable, and added a few ch:istics.
-
Deprecate the use of TYPE=... Preferred syntax is ENGINE=
-
- 08 Dec, 2003 1 commit
-
-
gluh@gluh.mysql.r18.ru authored
Syntax for TIMESTAMPADD: TIMESTAMPADD(interval, integer_expression, datetime_expression) interval:= FRAC_SECOND | SECOND | MINUTE | HOUR | DAY | WEEK | MONTH | QUARTER | YEAR Supported SQL_TSI_ prefix (like SQL_TSI_SECOND) Syntax for TIMESTAMPDIFF: TIMESTAMPDIFF(interval, datetime_expression1, datetime_expression2) interval:= FRAC_SECOND | SECOND | MINUTE | HOUR | DAY | WEEK | MONTH | QUARTER | YEAR Supported SQL_TSI_ prefix (like SQL_TSI_SECOND)
-
- 04 Dec, 2003 1 commit
-
-
pem@mysql.comhem.se authored
and BUG#1654: Stored Procedure Crash if contains subquery and set function Disallowed subselects in RETURN (for FUNCTIONs) and SET of local variables. The latter should work, but turned out to be difficult to fix, so we just disallow it for the time being.
-
- 02 Dec, 2003 2 commits
-
-
-
hf@deer.(none) authored
Second edition: error message was deleted as Segey suggested Now name of the constraint will be used as the name of the key if the last not specified
-
- 01 Dec, 2003 1 commit
-
-
pem@mysql.comhem.se authored
-
- 28 Nov, 2003 1 commit
-
-
monty@mysql.com authored
Fixed compiler warnings (a lot of hidden variables detected by the Forte compiler) Added a lot of 'version_xxx' strings to 'show variables' Prevent copying of TMP_TABLE_PARAM (This caused core dump bug on Solaris) Fixed problem with printing sub selects to debug log
-
- 27 Nov, 2003 1 commit
-
-
pem@mysql.comhem.se authored
and BUG#1966: "select 1 into a" on top-level hangs client
-
- 25 Nov, 2003 1 commit
-
-
konstantin@oak.local authored
"You can always mysql_real_query a query with placeholders after mysql_prepare()"
-
- 24 Nov, 2003 1 commit
-
-
pem@mysql.comhem.se authored
-
- 21 Nov, 2003 2 commits
-
-
pem@mysql.comhem.se authored
-
pem@mysql.comhem.se authored
-
- 19 Nov, 2003 1 commit
-
-
pem@mysql.comhem.se authored
-