An error occurred fetching the project authors.
  1. 03 Nov, 2005 1 commit
  2. 01 Nov, 2005 1 commit
  3. 27 Oct, 2005 2 commits
  4. 24 Oct, 2005 1 commit
  5. 11 Oct, 2005 1 commit
    • monty@mysql.com's avatar
      Reviewing new pushed code · f5fdf3e8
      monty@mysql.com authored
      - CHAR() now returns binary string as default
      - CHAR(X*65536+Y*256+Z) is now equal to CHAR(X,Y,Z) independent of the character set for CHAR()
      - Test for both ETIMEDOUT and ETIME from pthread_cond_timedwait()
        (Some old systems returns ETIME and it's safer to test for both values
         than to try to write a wrapper for each old system)
      - Fixed new introduced bug in NOT BETWEEN X and X
      - Ensure we call commit_by_xid or rollback_by_xid for all engines, even if one engine has failed
      - Use octet2hex() for all conversion of string to hex
      - Simplify and optimize code
      f5fdf3e8
  6. 30 Sep, 2005 1 commit
  7. 29 Sep, 2005 1 commit
  8. 21 Sep, 2005 1 commit
    • konstantin@mysql.com's avatar
      A fix and a test case for Bug#6513 "Test Suite: Values inserted by using · 6f8d3c48
      konstantin@mysql.com authored
      cursor is interpreted latin1 character and Bug#9819 "Cursors: Mysql Server
      Crash while fetching from table with 5 million records."
      A fix for a possible memory leak when fetching into an SP cursor
      in a long loop.
      The patch uses a common implementation of cursors in the binary protocol and 
      in stored procedures and implements materialized cursors.
      For implementation details, see comments in sql_cursor.cc
      6f8d3c48
  9. 18 Sep, 2005 1 commit
  10. 16 Sep, 2005 1 commit
  11. 15 Sep, 2005 1 commit
  12. 14 Sep, 2005 2 commits
  13. 13 Sep, 2005 1 commit
    • gluh@eagle.intranet.mysql.r18.ru's avatar
      Bug#9683 INFORMATION_SCH: Creation of temporary table allowed in · cc395fc0
      gluh@eagle.intranet.mysql.r18.ru authored
               Information_schema DB 
      Bug#9846 Inappropriate error displayed while
               dropping table from 'INFORMATION_SCHEMA'
      Bug#10734 Grant of privileges other than 'select' and 
               'create view' should fail on schema 
      Bug#10708 SP's can use INFORMATION_SCHEMA as ROUTINE_SCHEMA
      
       cumulative fix for bugs above(after review, 2nd version)
       added privilege check for information schema db & tables
      cc395fc0
  14. 02 Sep, 2005 1 commit
    • konstantin@mysql.com's avatar
      Rename: · a3ddcdf8
      konstantin@mysql.com authored
      - current_arena to stmt_arena: the thread may have more than one
      'current' arenas: one for runtime data, and one for the parsed 
      tree of a statement. Only one of them is active at any moment.
      - set_item_arena -> set_query_arena, because Item_arena was renamed to 
      Query_arena a while ago
      - set_n_backup_item_arena -> set_n_backup_active_arena;
      the active arena is the arena thd->mem_root and thd->free_list
      are currently pointing at.
      - restore_backup_item_arena -> restore_active_arena (with the same
      rationale)
      - change_arena_if_needed -> activate_stmt_arena_if_needed; this
      method sets thd->stmt_arena active if it's not done yet.
      a3ddcdf8
  15. 21 Aug, 2005 1 commit
  16. 18 Aug, 2005 2 commits
    • igor@rurik.mysql.com's avatar
      view.test: · 5ac7d867
      igor@rurik.mysql.com authored
        Added a test case for bug #10970.
      view.result:
        Added a test case for bug #10970.
        Modified the error messages for error ER_VIEW_SELECT_TMPTABLE.
      sql_view.cc:
        Fixed bug #10970.
        In the function mysql_create_view if a view does not refer
        any tables directly the variable table must be updated
        after the call of open_and_lock_tables.
      errmsg.txt:
        Modified the error messages for error ER_VIEW_SELECT_TMPTABLE
        (when fixing bug #10970).
      5ac7d867
    • monty@mysql.com's avatar
      3eaa9535
  17. 17 Aug, 2005 1 commit
    • bell@sanja.is.com.ua's avatar
      sql_view.cc: · 7f48830f
      bell@sanja.is.com.ua authored
        correct exit from mysql_create_view to restore ennvironment (BUG#12468)
      view.result, view.test:
        test of CRETE VIEW in SP
      7f48830f
  18. 13 Aug, 2005 1 commit
    • sanja@hasky.mysql.fi's avatar
      table.cc: · 562786bc
      sanja@hasky.mysql.fi authored
        remove unneeded multitable_view assignment
      sql_view.cc:
        fix potential memorry overrun in ref_array
        asssign multitable_view in time of view creation (BUG#12569)
      562786bc
  19. 12 Aug, 2005 1 commit
  20. 10 Aug, 2005 1 commit
    • evgen@moonbone.local's avatar
      Fix bug #11864 non unique names are allowed in subquery · baf0c9ad
      evgen@moonbone.local authored
      Column names weren't checked for uniqueness for subqueries.
      
      Code for names uniqueness checking used for view creation moved into 
      separate function named check_duplicate_names(). It's called on 
      preparation of subqueries to check uniqueness of names. If duplicate names 
      are found then error is raised.
      baf0c9ad
  21. 02 Aug, 2005 1 commit
  22. 31 Jul, 2005 1 commit
    • monty@mishka.local's avatar
      Fixes during review of new pushed code · 8437e9c1
      monty@mishka.local authored
      Change bool in C code to my_bool
      Added to mysqltest --enable_parsning and --disable_parsing to avoid to have to comment parts of tests
      Added comparison of LEX_STRING's and use this to compare file types for view and trigger files.
      8437e9c1
  23. 28 Jul, 2005 1 commit
  24. 12 Jul, 2005 1 commit
    • igor@igor-inspiron.creware.com's avatar
      view.test, view.result: · db28fb11
      igor@igor-inspiron.creware.com authored
        Expanded the test case for bug #6120 to cover
        DROP VIEW / CREATE VIEW scenario.
      sql_view.cc:
        Expanded the fix for bug #6120 to cover the case of
        DROP VIEW / CREATE_VIEW.
      db28fb11
  25. 06 Jul, 2005 1 commit
  26. 04 Jul, 2005 1 commit
    • monty@mysql.com's avatar
      Fixes during review of new code · ec420bfb
      monty@mysql.com authored
      - Mostly indentation fixes
      - Added missing test
      - Ensure that Item_func_case() checks for stack overruns
      - Use real_item() instead of (Item_ref*) item
      - Fixed wrong error handling
      ec420bfb
  27. 02 Jul, 2005 1 commit
  28. 01 Jul, 2005 1 commit
  29. 21 Jun, 2005 1 commit
  30. 15 Jun, 2005 1 commit
    • serg@serg.mylan's avatar
      renamed: · 01b3c709
      serg@serg.mylan authored
        Item_buff -> Cached_item
        Item_arena -> Query_arena
        TEST_ASSERT -> YYERROR_UNLESS
      01b3c709
  31. 07 Jun, 2005 1 commit
  32. 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
  33. 05 May, 2005 1 commit
  34. 23 Apr, 2005 1 commit
  35. 22 Apr, 2005 1 commit
  36. 02 Apr, 2005 2 commits