An error occurred fetching the project authors.
- 30 Dec, 2004 1 commit
-
-
monty@mysql.com authored
-
- 23 Dec, 2004 1 commit
-
-
acurtis@pcgem.rdg.cyberkinetica.com authored
Implement fine-grained control over access to stored procedures Privileges are cached (same way as existing table/column privs)
-
- 16 Dec, 2004 1 commit
-
-
ram@gw.mysql.r18.ru authored
-
- 25 Nov, 2004 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 23 Nov, 2004 1 commit
-
-
pem@mysql.comhem.se authored
Fixed bug in DROP FUNCTION for UDFs. Note: It still doesn't work properly, but that bug is somewhere else.
-
- 13 Nov, 2004 1 commit
-
-
bell@sanja.is.com.ua authored
used only one implementation of format parser of (printf) fixed multistatement
-
- 12 Nov, 2004 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 09 Nov, 2004 1 commit
-
-
monty@mysql.com authored
Added push_back(void *, MEM_ROOT *) to make some list-handling code easier that needs to be allocated in a different mem-root (Before one had to change thd->mem_root ; push_back(); restore mem_root.
-
- 03 Nov, 2004 1 commit
-
-
monty@mysql.com authored
FOUND is not a reserved keyword anymore Added Item_field::set_no_const_sub() to be able to mark fields that can't be substituted Added 'simple_select' method to be able to quickly determinate if a select_result is a normal SELECT Note that the 5.0 tree is not yet up to date: Sanja will have to fix multi-update-locks for this merge to be complete
-
- 02 Nov, 2004 1 commit
-
-
timour@mysql.com authored
- Changed name resolution for GROUP BY so that derived columns do not shadow table columns from the FROM clause. As a result GROUP BY now is handled as a true ANSI extentsion. - Issue a warning when HAVING is resolved into ambiguous columns, and prefer the columns from the GROUP BY clause over SELECT columns.
-
- 23 Oct, 2004 1 commit
-
-
pem@mysql.comhem.se authored
Fixed the pre-caching of functions. It now gives the expected stack overrun error for functions recursing too deep.
-
- 22 Oct, 2004 1 commit
-
-
pem@mysql.comhem.se authored
Removed the support for renaming SPs. It's non-standard, conflicted with a standard syntax, and was a bit broken anyway.
-
- 20 Oct, 2004 1 commit
-
-
bell@sanja.is.com.ua authored
net_printf/send_error calls replaced by my_error family functions -1/1 (sent/unsent) error reporting removed (WL#2133)
-
- 14 Oct, 2004 1 commit
-
-
pem@mysql.comhem.se authored
NO SQL CONTAINS SQL (default) READS SQL DATA MODIFIES SQL DATA These are needed as hints for the replication. (Before this, we did have the default in the mysql.proc table, but no support in the parser.)
-
- 14 Sep, 2004 1 commit
-
-
bell@sanja.is.com.ua authored
support of merged VIEW over several tables added (WL#1809)
-
- 08 Sep, 2004 2 commits
-
-
pem@mysql.comhem.se authored
Easy to prevent crash, but the question was how to treat this case? We ended up implementing the "global" SPs (i.e. with no associated db), which were planned but left unresolved when SPs moved into dbs. So now things like "call .p()" work too.
-
pem@mysql.comhem.se authored
Althought techically not a but (as it's functioning as designed), it was decided that the design should be changed. Some users have a problem with dates being '0000-00-00' and the SQL standard specifies that the modification date should be the same as the creation date at creation.
-
- 01 Sep, 2004 1 commit
-
-
bell@sanja.is.com.ua authored
-
- 27 Aug, 2004 1 commit
-
-
pem@mysql.comhem.se authored
-
- 06 Aug, 2004 1 commit
-
-
pem@mysql.comhem.se authored
...and added new test file, sp-threads, for multiple connection tests (apart from the security tests that are in sp-security).
-
- 03 Aug, 2004 1 commit
-
-
konstantin@mysql.com authored
- client side part is simple and may be considered stable - server side part now just joggles with THD state to save execution state and has no additional locking wisdom. Lot's of it are to be rewritten.
-
- 02 Aug, 2004 1 commit
-
-
pem@mysql.comhem.se authored
Added a simple optimizer that shortcuts jumps and skip unused instructions.
-
- 21 Jul, 2004 1 commit
-
-
serg@serg.mylan authored
-
- 15 Jul, 2004 2 commits
-
-
bell@sanja.is.com.ua authored
two TABLE_LIST copy eliminated
-
monty@mysql.com authored
Note: The following tests fails - fulltext (Sergei has promised to fix) - rpl_charset (Guilhem should fix) - rpl_timezone (Dimitray has promised to fix) Sanja needs to check out the calling of close_thread_tables() in sp_head.cc
-
- 12 Jul, 2004 1 commit
-
-
monty@mysql.com authored
-
- 15 Jun, 2004 1 commit
-
-
pem@mysql.comhem.se authored
Also added some related security tests and corrected related error messages.
-
- 09 Jun, 2004 1 commit
-
-
pem@mysql.comhem.se authored
It's not possible to quote the definition according to the current sql_mode setting, so instead we use the setting stored with the SP (that's how it's parsed anyway), and show this setting in the SHOW CREATE output.
-
- 08 Jun, 2004 1 commit
-
-
pem@mysql.comhem.se authored
This fixes part of BUG#3229: Stored procedure comment causes packets out of order.
-
- 28 Apr, 2004 1 commit
-
-
pem@mysql.comhem.se authored
merged manually by guilhem.
-
- 26 Mar, 2004 1 commit
-
-
monty@mysql.com authored
-
- 23 Mar, 2004 1 commit
-
-
pem@mysql.comhem.se authored
Procedure names were unintentionally case-sensitive when read from the database (but case-insensitive when fetched from the cache). Note that the DB-part of qualified names is still case-sensitive (for consistency with other usage in mysql).
-
- 22 Mar, 2004 1 commit
-
-
pem@mysql.comhem.se authored
Phase 4 (final): Remove associated stored procedures when a database is dropped.
-
- 19 Mar, 2004 1 commit
-
-
pem@mysql.comhem.se authored
Phase 3: Made qualified names work for functions as well.
-
- 17 Mar, 2004 1 commit
-
-
pem@mysql.comhem.se authored
Had to initialize some fields in lex before parsing an SP read from mysql.proc.
-
- 11 Mar, 2004 1 commit
-
-
pem@mysql.comhem.se authored
Phase 2: Make SPs belong to a DB, and use qualified names. As a side effect, using USE in an SP is no longer allowed. (It just doesn't work otherwise.)
-
- 17 Feb, 2004 1 commit
-
-
pem@mysql.comhem.se authored
Phase 1: Introduced sp_name class, for qualified name support.
-
- 11 Feb, 2004 1 commit
-
-
pem@mysql.comhem.se authored
-
- 14 Jan, 2004 1 commit
-
-
pem@mysql.comhem.se authored
(This might not be enough, could be more statements that must be detected...)
-
- 21 Dec, 2003 1 commit
-
-
monty@mysql.com authored
Some code cleanup
-