An error occurred fetching the project authors.
  1. 16 May, 2005 1 commit
  2. 13 May, 2005 1 commit
    • serg@serg.mylan's avatar
      sql/ha_blackhole.cc · c4c76c5f
      serg@serg.mylan authored
          bug#10175 - blackhole.test hangs with "Warning: prev link 1 didn't point at previous lock at read: read lock with no write locks"
      sql/sql_base.cc
          libmysqld/examples/mysql.cc linking problem
      c4c76c5f
  3. 10 May, 2005 1 commit
    • igor@rurik.mysql.com's avatar
      Many files: · 9d4b228b
      igor@rurik.mysql.com authored
        Fixed bug #8528.
        Representation for single-table views was made similar to
        representation for multi-table views.
      view.test:
        Added test case for bug #8528.
      view.result:
        Added test case for bug #8528. Fixed other test cases.
      9d4b228b
  4. 06 May, 2005 1 commit
    • antony@ltantony.mysql.com's avatar
      Bug#6616 · bf17b75a
      antony@ltantony.mysql.com authored
        MySQL server 100% CPU if FLUSH TABLES WITH READ LOCK + INSERT
        Infinite loop caused by missing update to thd version.
      bf17b75a
  5. 30 Apr, 2005 1 commit
  6. 29 Apr, 2005 1 commit
  7. 28 Apr, 2005 1 commit
  8. 14 Apr, 2005 1 commit
    • igor@rurik.mysql.com's avatar
      information_schema.result, information_schema.test: · b622aba1
      igor@rurik.mysql.com authored
        Added a test in connection with the fix for
        bug #6106.
      view.result, view.test:
        Added test cases for bugs #6106/6107.
      sql_show.cc:
        The addition of the case for items of the type REF_ITEM in the
        function uses_only_table_name_fields became necessary after
        the fix for bug #6106.
      sql_base.cc:
        The problem was due to the fact that two different column
        references were glued together though one of them belonged to
        a subquery while another to an outer query. This caused
        eventually a wrong calculation of values for the used_tables
        attribute.
      b622aba1
  9. 05 Apr, 2005 1 commit
  10. 04 Apr, 2005 1 commit
  11. 02 Apr, 2005 1 commit
  12. 28 Mar, 2005 1 commit
  13. 16 Mar, 2005 1 commit
  14. 09 Mar, 2005 1 commit
  15. 04 Mar, 2005 1 commit
    • 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
  16. 26 Feb, 2005 1 commit
  17. 25 Feb, 2005 1 commit
  18. 21 Feb, 2005 1 commit
  19. 19 Feb, 2005 1 commit
    • monty@mysql.com's avatar
      Fixed BUILD script to use --with-berkeley-db instead of --with-bdb · 218e00ac
      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
      218e00ac
  20. 16 Feb, 2005 1 commit
  21. 14 Feb, 2005 1 commit
    • guilhem@mysql.com's avatar
      1) undoing my fix for BUG#8055 "Trouble with replication from temporary tables and ignores" · 55fb16a7
      guilhem@mysql.com authored
      and fixing it another way (per Monty; a simpler solution which does not increase the number
      of binlog events is to always execute DROP TEMPORARY TABLE IF EXISTS on slave). A new test rpl_drop_temp.
      2) fixing BUG#8436 "Multiple "stacked" SQL statements cause replication to stop" by setting
      thd->query_length to the length of the query being executed, not counting the next queries
      if this is a multi-query. Should also improve display of SHOW PROCESSLIST. A new test rpl_multi_query.
      55fb16a7
  22. 08 Feb, 2005 3 commits
  23. 05 Feb, 2005 1 commit
  24. 04 Feb, 2005 1 commit
  25. 30 Jan, 2005 1 commit
  26. 27 Jan, 2005 1 commit
  27. 24 Jan, 2005 3 commits
  28. 19 Jan, 2005 1 commit
  29. 16 Jan, 2005 1 commit
  30. 15 Jan, 2005 1 commit
  31. 13 Jan, 2005 1 commit
  32. 11 Jan, 2005 2 commits
  33. 07 Jan, 2005 1 commit
  34. 06 Jan, 2005 2 commits
    • monty@mysql.com's avatar
      Fixed a bug in prepared statements error handling · ef74d8d8
      monty@mysql.com authored
      After merge fixes
      ef74d8d8
    • monty@mysql.com's avatar
      First stage of table definition cache · d35140a8
      monty@mysql.com authored
      Split TABLE to TABLE and TABLE_SHARE (TABLE_SHARE is still allocated as part of table, will be fixed soon)
      Created Field::make_field() and made Field_num::make_field() to call this
      Added 'TABLE_SHARE->db' that points to database name; Changed all usage of table_cache_key as database name to use this instead
      Changed field->table_name to point to pointer to alias. This allows us to change alias for a table by just updating one pointer.
      Renamed TABLE_SHARE->real_name to table_name
      Renamed TABLE->table_name to alias
      Renamed TABLE_LIST->real_name to table_name
      d35140a8