An error occurred fetching the project authors.
  1. 05 May, 2005 2 commits
  2. 28 Apr, 2005 1 commit
  3. 22 Apr, 2005 1 commit
  4. 21 Apr, 2005 1 commit
  5. 20 Apr, 2005 2 commits
  6. 19 Apr, 2005 2 commits
  7. 15 Apr, 2005 1 commit
  8. 14 Apr, 2005 1 commit
  9. 13 Apr, 2005 3 commits
  10. 12 Apr, 2005 1 commit
  11. 08 Apr, 2005 1 commit
  12. 07 Apr, 2005 1 commit
  13. 06 Apr, 2005 1 commit
  14. 30 Mar, 2005 1 commit
  15. 22 Mar, 2005 1 commit
    • mysqldev@mysql.com's avatar
      sql_acl.cc, sql_acl.h, sql_parse.cc · ad26a667
      mysqldev@mysql.com authored
        New privilege CREATE USER (CREATE_USER_ACL, Create_user_priv) added
      grant2.test:
        new tests (mostly backported from jani's patch)
      system_mysql_db.result, sp.result, grant2.result, grant.result:
        results updated
      ad26a667
  16. 18 Mar, 2005 1 commit
  17. 17 Mar, 2005 1 commit
  18. 15 Mar, 2005 1 commit
  19. 08 Mar, 2005 2 commits
  20. 07 Mar, 2005 2 commits
  21. 05 Mar, 2005 1 commit
  22. 04 Mar, 2005 2 commits
    • acurtis@pcgem.rdg.cyberkinetica.com's avatar
      Bug#3788 · 5e1d2ad6
      acurtis@pcgem.rdg.cyberkinetica.com authored
        Crashes with stored procedure return non-string values
        Also fixes Bug#2773
      5e1d2ad6
    • dlenev@brandersnatch.localdomain's avatar
      Better approach for prelocking of tables for stored routines execution · 5a6c7027
      dlenev@brandersnatch.localdomain authored
      and some SP-related cleanups.
      
      - We don't have separate stage for calculation of list of tables
        to be prelocked and doing implicit LOCK/UNLOCK any more.
        Instead we calculate this list at open_tables() and do implicit
        LOCK in lock_tables() (and UNLOCK in close_thread_tables()).
        Also now we support cases when same table (with same alias) is
        used several times in the same query in SP.
      
      - Cleaned up execution of SP. Moved all common code which handles
        LEX and does preparations before statement execution or complex
        expression evaluation to auxilary sp_lex_keeper class. Now 
        all statements in SP (and corresponding instructions) that
        evaluate expression which can contain subquery have their
        own LEX.
      5a6c7027
  23. 03 Mar, 2005 1 commit
    • konstantin@mysql.com's avatar
      Fixes for bug#8115 "Server Crash with prepared statement" · fe2d63a0
      konstantin@mysql.com authored
       and bug#8849 "problem with insert statement with table alias's": 
      make equality propagation work in stored procedures and prepared 
      statements.
      Equality propagation can change AND/OR structure of ON expressions,
      so the fix is to provide each execution of PS/SP with it's own
      copy of AND/OR tree. We have been doing that already for WHERE clauses,
      now ON clauses are also copied.
      fe2d63a0
  24. 02 Mar, 2005 1 commit
  25. 25 Feb, 2005 2 commits
  26. 24 Feb, 2005 2 commits
  27. 18 Feb, 2005 1 commit
    • pem@mysql.comhem.se's avatar
      Fixed... · a69fc3c0
      pem@mysql.comhem.se authored
        BUG#6642: Stored procedure crash if expression with set function
        BUG#7013: Stored procedure crash if group by ... with rollup
        BUG#7743: 'Lost connection to MySQL server during query' on Stored Procedure
        BUG#7992: SELECT .. INTO variable .. within Stored Procedure crashes
                  the server
        BUG#8116: calling simple stored procedure twice in a row results
                  in server crash
      
      Rolling back the item change list after each substatement in a procedure
      fixed the failing assert().
      a69fc3c0
  28. 16 Feb, 2005 1 commit
  29. 09 Feb, 2005 1 commit
  30. 08 Feb, 2005 1 commit
    • pem@mysql.comhem.se's avatar
      WL#2130: Table locking for stored FUNCTIONs · 2c26ebe3
      pem@mysql.comhem.se authored
      Collect all tables and SPs refered by a statement, and open all tables
      with an implicit LOCK TABLES. Do find things refered by triggers and views,
      we open them first (and then repeat this until nothing new is found), before
      doing the actual lock tables.
      2c26ebe3