An error occurred fetching the project authors.
  1. 07 Jul, 2005 1 commit
  2. 01 Jul, 2005 2 commits
  3. 20 Jun, 2005 2 commits
  4. 19 Jun, 2005 1 commit
  5. 07 Jun, 2005 1 commit
    • dlenev@brandersnatch.localdomain's avatar
      Fix for bug #10015 "Crash in InnoDB if stored routines are used". · 270b695f
      dlenev@brandersnatch.localdomain authored
      We should not allow explicit or implicit transaction commits inside
      of stored functions or triggers (so in autocommit mode we should not
      do commits after execution of sub-statement).
      Also since we don't support nested statement transactions in 5.0,
      we shouldn't commit or rollback stmt transactions while we are inside
      stored functions or triggers. This should be fixed in later (>=5.1)
      releases.
      270b695f
  6. 12 May, 2005 1 commit
  7. 05 May, 2005 1 commit
    • gbichot@quadita2.mysql.com's avatar
      Approximative fixes for BUG#2610,2611,9100 i.e. WL#2146... · b72ae4fe
      gbichot@quadita2.mysql.com authored
        Approximative fixes for BUG#2610,2611,9100 i.e. WL#2146 binlogging/replication of routines (stored procs and functions).
        Approximative, because it's using our binlogging way (what we call "query"-level) and this is not as good as record-level binlog (5.1) would be. It imposes several
        limitations to routines, and has caveats (which I'll document, and for which the server will try to issue errors but that is not always possible).
        Reason I don't propagate caller info to the binlog as planned is that on master and slave
        users may be different; even with that some caveats would remain.
      b72ae4fe
  8. 29 Apr, 2005 1 commit
  9. 27 Apr, 2005 1 commit
  10. 26 Apr, 2005 1 commit
  11. 20 Apr, 2005 1 commit
  12. 14 Apr, 2005 1 commit
  13. 08 Apr, 2005 1 commit
  14. 07 Apr, 2005 1 commit
  15. 06 Apr, 2005 1 commit
  16. 03 Apr, 2005 1 commit
  17. 30 Mar, 2005 2 commits
  18. 29 Mar, 2005 1 commit
  19. 23 Mar, 2005 1 commit
    • serg@serg.mylan's avatar
      sql/sql_acl.cc · 9a0dd5c7
      serg@serg.mylan authored
          report correct errror in MODE_NO_AUTO_CREATE_USER
          cleanup
      after merge fixes
      9a0dd5c7
  20. 22 Mar, 2005 1 commit
  21. 16 Mar, 2005 1 commit
    • dlenev@brandersnatch.localdomain's avatar
      WL#874 "Extended LOAD DATA". · f1691140
      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
      f1691140
  22. 09 Mar, 2005 1 commit
  23. 28 Feb, 2005 1 commit
  24. 23 Feb, 2005 2 commits
  25. 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
  26. 27 Jan, 2005 1 commit
  27. 20 Jan, 2005 1 commit
    • bar@mysql.com's avatar
      errmsg.txt: · 5ed1b144
      bar@mysql.com authored
        Adding Shift-JIS error messages
        for Japanese Windows distributions.
        Thanks to Serg for help with a perl program 
        to merge 4.1 messages into 5.0 format :)
      5ed1b144
  28. 19 Jan, 2005 2 commits
  29. 16 Jan, 2005 1 commit
  30. 13 Jan, 2005 1 commit
    • paul@kite-hub.kitebird.com's avatar
      user_limits.result: · 231632e3
      paul@kite-hub.kitebird.com authored
        Fix test result affected by error message rewording.
      errmsg.txt:
        Reword error messages.
      set_var.cc:
        Reorder variables.
      mysqld.cc:
        Reorder options.
      231632e3
  31. 23 Dec, 2004 1 commit
  32. 16 Dec, 2004 4 commits