1. 24 Jun, 2005 7 commits
  2. 23 Jun, 2005 33 commits
    • unknown's avatar
      fixed encrypt() name · fdb283a8
      unknown authored
      fdb283a8
    • unknown's avatar
      Merge sanja.is.com.ua:/home/bell/mysql/bk/mysql-5.0 · ff4b3940
      unknown authored
      into sanja.is.com.ua:/home/bell/mysql/bk/work-bug3-5.0
      
      ff4b3940
    • unknown's avatar
      fixed encrypt() print (BUG#7024) · 52d76c5f
      unknown authored
      
      mysql-test/r/view.result:
        using encrypt & substring_index in view
      mysql-test/t/view.test:
        using encrypt & substring_index in view
      sql/item_strfunc.h:
        fixed encrypt() print
      52d76c5f
    • unknown's avatar
    • unknown's avatar
      Merge tkatchaounov@bk-internal.mysql.com:/home/bk/mysql-5.0 · 24b10116
      unknown authored
      into mysql.com:/home/timka/mysql/src/5.0-virgin
      
      24b10116
    • unknown's avatar
      Merge sanja.is.com.ua:/home/bell/mysql/bk/mysql-5.0 · 0dd60645
      unknown authored
      into sanja.is.com.ua:/home/bell/mysql/bk/work-bug3-5.0
      
      
      sql/sql_class.h:
        Auto merged
      0dd60645
    • unknown's avatar
      Merge rurik.mysql.com:/home/igor/mysql-5.0 · 824688d9
      unknown authored
      into rurik.mysql.com:/home/igor/dev/mysql-5.0-0
      
      
      sql/sql_select.cc:
        Auto merged
      824688d9
    • unknown's avatar
      Merge mysql.com:/home/svoj/devel/mysql/mysql-5.0.8-build · ea00bdee
      unknown authored
      into mysql.com:/home/svoj/devel/mysql/mysql-5.0.9
      
      ea00bdee
    • unknown's avatar
      Manual merge · 04d7c5a7
      unknown authored
      
      mysql-test/r/func_str.result:
        Auto merged
      mysql-test/t/func_str.test:
        Auto merged
      sql/item_subselect.cc:
        Auto merged
      sql/sql_select.cc:
        Auto merged
      04d7c5a7
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.0 · 750e7e0d
      unknown authored
      into mysql.com:/opt/local/work/mysql-5.0-sp_instr
      
      750e7e0d
    • unknown's avatar
      Merge spetrunia@bk-internal.mysql.com:/home/bk/mysql-5.0 · 54279162
      unknown authored
      into mysql.com:/home/psergey/mysql-5.0-bug8441
      
      54279162
    • unknown's avatar
      Merge spetrunia@bk-internal.mysql.com:/home/bk/mysql-5.0 · 46bf7087
      unknown authored
      into mysql.com:/home/psergey/mysql-5.0-bug8441
      
      46bf7087
    • unknown's avatar
      Merge rurik.mysql.com:/home/igor/mysql-4.1 · 855ee4ac
      unknown authored
      into rurik.mysql.com:/home/igor/dev/mysql-4.1-1
      
      855ee4ac
    • unknown's avatar
      Merge spetrunia@bk-internal.mysql.com:/home/bk/mysql-4.1 · 4c36fc00
      unknown authored
      into mysql.com:/home/psergey/mysql-4.1-bug10151
      
      4c36fc00
    • unknown's avatar
      sql_parse.cc: · 95c04248
      unknown authored
        Fix for fix for bug #9728
        Error caused server hang on prepared insert ... select
      
      
      sql/sql_parse.cc:
        Fix for fix for bug #9728
        Error caused server hang on prepared insert ... select
      95c04248
    • unknown's avatar
      Merge · fe445e23
      unknown authored
      
      mysql-test/r/case.result:
        SCCS merged
      mysql-test/t/case.test:
        SCCS merged
      sql/item_cmpfunc.cc:
        SCCS merged
      fe445e23
    • unknown's avatar
      removed unneed line · 7cd280da
      unknown authored
      7cd280da
    • unknown's avatar
      WL#2286 - Compile MySQL w/YASSL support · 66560669
      unknown authored
      Fix for compilation failure with Forte Developer C++.
      
      
      configure.in:
        Export ARFLAGS, so innobase could pick it up.
      innobase/configure.in:
        Use ARFLAGS exported by parent configure script.
      66560669
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.0 · 0c4e1733
      unknown authored
      into mysql.com:/opt/local/work/mysql-5.0-sp_instr
      
      0c4e1733
    • unknown's avatar
      - implement inheritance of sp_instr: public Query_arena. · 1c90d1e2
      unknown authored
        We need every instruction to have its own arena, because we want to
        track instruction's state (INITIALIZED_FOR_SP -> EXECUTED). Because of 
        `if' statements and other conditional instructions used in stored 
        procedures, not every instruction of a stored procedure gets executed 
        during the first (or even subsequent) execution of the procedure. 
        So it's better if we track the execution state of every instruction 
        independently.
        All instructions of a given procedure now also share sp_head's 
        mem_root, but keep their own free_list.
        This simplifies juggling with free Item lists in sp_head::execute.
      - free_items() moved to be a member of Query_arena. 
      - logic of 'backup_arena' debug member of Query_arena has been
        changed to support
        multi-backups. Until now, TRUE 'backup_arena' meant that there is
        exactly one active backup of the THD arena. Now it means simply that
        the arena is used for backup, so that we can't accidentally overwrite an 
        existing backup. This allows doing multiple backups, e.g. in
        sp_head::execute and Cursor::fetch, when THD arena is already backed up
        but we want to set yet another arena (usually the 'permanent' arena,
        to save permanent transformations/optimizations of a parsed tree).
      
      
      sql/sp_head.cc:
        - use Query_arena support in sp_head::execute() as now sp_instr inherites
          from it.
      sql/sp_head.h:
        - inherite sp_instr from Query_arena
      sql/sql_class.cc:
        - changed the principle of Query_arena::backup_arena; free_items is now
          a member of Query_arena.
      sql/sql_class.h:
        - changed the principle of Query_arena::backup_arena; free_items is now
          a member of Query_arena.
      sql/sql_prepare.cc:
        free_items() is now a member of Query_arena.
      sql/sql_select.cc:
        free_items() now automatically sets free_list to zero.
      1c90d1e2
    • unknown's avatar
      Merge mysql.com:/Users/kent/mysql/bk/mysql-5.0-release · a5a16053
      unknown authored
      into mysql.com:/Users/kent/mysql/bk/mysql-5.0
      
      a5a16053
    • unknown's avatar
      Merge mysql.com:/Users/kent/mysql/bk/mysql-4.1-gca · 834f6341
      unknown authored
      into mysql.com:/Users/kent/mysql/bk/mysql-5.0-release
      
      
      mysql-test/mysql-test-run.pl:
        Auto merged
      834f6341
    • unknown's avatar
      mysql-test-run.pl: · a1c03edd
      unknown authored
        Might need a restart after test with special TZ
        Removed unused argument to run_mysqltest()
      
      
      mysql-test/mysql-test-run.pl:
        Might need a restart after test with special TZ
        Removed unused argument to run_mysqltest()
      a1c03edd
    • unknown's avatar
      Merge sanja.is.com.ua:/home/bell/mysql/bk/mysql-5.0 · 90a099c3
      unknown authored
      into sanja.is.com.ua:/home/bell/mysql/bk/work-bug3-5.0
      
      
      sql/sql_class.h:
        Auto merged
      90a099c3
    • unknown's avatar
      fixed environment restoring in case of error during SP function execution (BUG#9503) · 4342dfab
      unknown authored
      #define macro improvement
      
      
      mysql-test/r/sp-security.result:
        BUG#9503: reseting correct parameters of thread after error in SP function
      mysql-test/t/sp-security.test:
        BUG#9503: reseting correct parameters of thread after error in SP function
      sql/item_func.cc:
        fixed environment restoring in case of error during SP function execution
      sql/protocol.cc:
        added debug print
      sql/sql_class.h:
        fixed #defines to force them to be alvaise in piar, and variable name made more complex for accident repeating in other code
      4342dfab
    • unknown's avatar
      Merge spetrunia@bk-internal.mysql.com:/home/bk/mysql-4.1 · 056392d5
      unknown authored
      into mysql.com:/home/psergey/mysql-4.1-bug10151
      
      056392d5
    • unknown's avatar
      Merge mysql.com:/home/timka/mysql/src/5.0-virgin · eb292e25
      unknown authored
      into mysql.com:/home/timka/mysql/src/5.0-dbg
      
      
      sql/opt_range.cc:
        Auto merged
      eb292e25
    • unknown's avatar
      Merge rurik.mysql.com:/home/igor/mysql-4.1 · 20a3e689
      unknown authored
      into rurik.mysql.com:/home/igor/dev/mysql-4.1-1
      
      20a3e689
    • unknown's avatar
      func_str.result, func_str.test: · d4303ec4
      unknown authored
        Added a test case for bug #10124.
      sql_select.h, item_subselect.cc, sql_select.cc:
        Fixed bug #10124.
        The copy method of the store_key classes can return
        STORE_KEY_OK=0, STORE_KEY_FATAL=1, STORE_KEY_CONV=2 now.
      field.cc:
        Fixed bug #10124.
        When ussuing a warning the store methods return 2 instead of 1 now.
      
      
      sql/field.cc:
        Fixed bug #10124.
        When ussuing a warning the store methods return 2 instead of 1 now.
      sql/sql_select.cc:
        Fixed bug #10124.
        The copy method of the store_key classes can return
        STORE_KEY_OK=0, STORE_KEY_FATAL=1, STORE_KEY_CONV=2 now.
      sql/item_subselect.cc:
        Fixed bug #10124.
        The copy method of the store_key classes can return
        STORE_KEY_OK=0, STORE_KEY_FATAL=1, STORE_KEY_CONV=2 now.
      sql/sql_select.h:
        Fixed bug #10124.
        The copy method of the store_key classes can return
        STORE_KEY_OK=0, STORE_KEY_FATAL=1, STORE_KEY_CONV=2 now.
      mysql-test/t/func_str.test:
        Added a test case for bug #10124.
      mysql-test/r/func_str.result:
        Added a test case for bug #10124.
      d4303ec4
    • unknown's avatar
      Merge mysql.com:/home/svoj/devel/mysql/mysql-5.0.8-build · 7263eb0e
      unknown authored
      into mysql.com:/home/svoj/devel/mysql/mysql-5.0.9
      
      7263eb0e
    • unknown's avatar
      Merge ibabaev@bk-internal.mysql.com:/home/bk/mysql-5.0 · ac68d527
      unknown authored
      into rurik.mysql.com:/home/igor/mysql-5.0
      
      ac68d527
    • unknown's avatar
      opt_range.cc: · 62b82e18
      unknown authored
        Identation correction.
      
      
      sql/opt_range.cc:
        Identation correction.
      62b82e18
    • unknown's avatar
      Merge mysql.com:/space/my/mysql-4.1 · de9c97ed
      unknown authored
      into mysql.com:/space/my/mysql-5.0-build
      
      de9c97ed