1. 08 Sep, 2005 20 commits
  2. 07 Sep, 2005 20 commits
    • unknown's avatar
      Merge rurik.mysql.com:/home/igor/mysql-4.1 · bd0fdb2f
      unknown authored
      into rurik.mysql.com:/home/igor/dev/mysql-4.1-0
      
      
      mysql-test/r/func_gconcat.result:
        Auto merged
      mysql-test/t/func_gconcat.test:
        Auto merged
      sql/item_sum.cc:
        Auto merged
      bd0fdb2f
    • unknown's avatar
      Merge mysql.com:/home/hartmut/projects/mysql/dev/4.1 · edbb643f
      unknown authored
      into  mysql.com:/home/hartmut/projects/mysql/dev/5.0
      
      
      client/mysqlimport.c:
        Auto merged
      sql/item_cmpfunc.cc:
        Auto merged
      sql/item_cmpfunc.h:
        Auto merged
      edbb643f
    • unknown's avatar
      Merge mysql.com:/home/hartmut/projects/mysql/dev/4.0 · 56029890
      unknown authored
      into  mysql.com:/home/hartmut/projects/mysql/dev/4.1
      
      
      client/mysqlimport.c:
        Auto merged
      56029890
    • unknown's avatar
      Merge aivanov@bk-internal.mysql.com:/home/bk/mysql-5.0 · 3acc1c05
      unknown authored
      into  mysql.com:/home/alexi/mysql-5.0
      
      
      sql/sql_yacc.yy:
        Auto merged
      3acc1c05
    • unknown's avatar
      Merge aivanov@bk-internal.mysql.com:/home/bk/mysql-4.1 · fb2d2254
      unknown authored
      into  mysql.com:/home/alexi/mysql-4.1
      
      fb2d2254
    • unknown's avatar
      Merge epotemkin@bk-internal.mysql.com:/home/bk/mysql-5.0 · 55df5271
      unknown authored
      into moonbone.local:/work/12922-bug-5.0-mysql
      
      55df5271
    • unknown's avatar
      item.cc: · 4e5c5695
      unknown authored
        Fix for fix bug#12922.
      
      
      sql/item.cc:
        Fix for fix bug#12922.
      4e5c5695
    • unknown's avatar
      Fix for Bug#12995: Inside function "Table 't4' was not locked with LOCK TABLES" · 8c2c8782
      unknown authored
      Any form of HANDLER statement is forbidden from usage in stored procedures/functions.
      
      
      mysql-test/r/sp-error.result:
        Results for the test case for Bug#12995 added.
      mysql-test/t/sp-error.test:
        Test case for Bug#12995 added.
      sql/sql_yacc.yy:
        Forbid any form of "HANDLER" statement from use in stored procedures/functions.
      8c2c8782
    • unknown's avatar
      Manual merge · 37e561be
      unknown authored
      37e561be
    • unknown's avatar
      Fix bug #12922 if(sum(),...) with group from view returns wrong results · 4173d3b4
      unknown authored
      Fields of view represented by Item_direct_view_ref. When complex expression
      such as if(sum()>...,...) is splited in simpler parts by refs was ignored.
      Beside this direct ref doesn't use it's result_field and thus can't store
      it's result in tmp table which is needed for sum() ... group.
      All this results in reported bug.
      
      Item::split_sum_func2() now converts Item_direct_view_ref to Item_ref to
      make fields from view being storable in tmp table.
      
      
      sql/item.h:
        Fix bug #12922 if(sum(),...) with group from view returns wrong results
        Added function ref_type() to distinguish Item_ref subclasses
      sql/item.cc:
        Fix bug #12922 if(sum(),...) with group from view returns wrong results
         Item::split_sum_func2() now converts Item_direct_view_ref to Item_ref to make fields from view being storable in tmp table.
      mysql-test/t/view.test:
        Test case for bug#12922 if(sum(),...) with group from view returns wrong results
      mysql-test/r/view.result:
        Test case for bug#12922 if(sum(),...) with group from view returns wrong results
      4173d3b4
    • unknown's avatar
      Merge zim.(none):/home/brian/mysql/mysql-4.1 · cac9db70
      unknown authored
      into  zim.(none):/home/brian/mysql/mysql-5.0
      
      
      sql/examples/ha_tina.cc:
        Auto merged
      cac9db70
    • unknown's avatar
      Small tweak for random read performance (we shouldn't always tell the OS that... · 915fee00
      unknown authored
      Small tweak for random read performance (we shouldn't always tell the OS that we will be doing a linear scan). 
      
      
      sql/examples/ha_tina.cc:
        Small tweak for random read performance.
      915fee00
    • unknown's avatar
      Bug #12987 yassl: Compilation of integer.cpp fails on OS X Tiger · 6acc1ab5
      unknown authored
      
      extra/yassl/taocrypt/include/misc.hpp:
        Disable X86ASM on OsX
      6acc1ab5
    • unknown's avatar
      Merge mysql.com:/home/alexi/mysql-5.0 · fe630ff0
      unknown authored
      into  mysql.com:/home/alexi/dev/mysql-5.0-0
      
      
      sql/item_cmpfunc.cc:
        Auto merged
      sql/item_cmpfunc.h:
        Auto merged
      sql/sql_select.cc:
        Auto merged
      sql/sql_yacc.yy:
        Auto merged
      fe630ff0
    • unknown's avatar
      Merge mysql.com:/home/alexi/mysql-4.1 · cf20d3e3
      unknown authored
      into  mysql.com:/home/alexi/dev/mysql-4.1-0
      
      
      sql/item_cmpfunc.cc:
        Auto merged
      sql/item_cmpfunc.h:
        Auto merged
      cf20d3e3
    • unknown's avatar
      join_outer.result, opt_range.cc, item_cmpfunc.cc: · 43904698
      unknown authored
        Post merge changes
      sql_yacc.yy:
        Post merge changes
      sql_select.cc:
        Fixed bugs #12101, #12102: wrong calculation of not_null_tables()
         for some expressions (post merge changes).
         The function add_key_fields() is modified. There cannot be NOT before
         BETWEEN/IN anymore. Rather Item_func_between/in objects can represent
         now [NOT]BETWEEN/IN expressions.
      
      
      sql/item_cmpfunc.cc:
        Post merge changes
      sql/opt_range.cc:
        Post merge changes
      sql/sql_select.cc:
        Fixed bugs #12101, #12102: wrong calculation of not_null_tables()
         for some expressions (post merge changes).
         The function add_key_fields() is modified. There cannot be NOT before
         BETWEEN/IN anymore. Rather Item_func_between/in objects can represent
         now [NOT]BETWEEN/IN expressions.
      sql/sql_yacc.yy:
        Post merge changes.
      mysql-test/r/join_outer.result:
        Post merge changes
      43904698
    • unknown's avatar
      Merge tulin@bk-internal.mysql.com:/home/bk/mysql-4.1 · d0b81ba3
      unknown authored
      into poseidon.ndb.mysql.com:/home/tomas/mysql-4.1
      
      d0b81ba3
    • unknown's avatar
      Merge mysql.com:/usr/home/bar/mysql-4.1.b12611 · 80530e74
      unknown authored
      into  mysql.com:/usr/home/bar/mysql-5.0
      
      
      mysql-test/r/ctype_utf8.result:
        Auto merged
      mysql-test/r/func_like.result:
        Auto merged
      mysql-test/t/ctype_utf8.test:
        Auto merged
      sql/item_cmpfunc.cc:
        Auto merged
      sql/item_cmpfunc.h:
        Auto merged
      80530e74
    • unknown's avatar
      Merge abarkov@bk-internal.mysql.com:/home/bk/mysql-4.1 · 3f63d9fa
      unknown authored
      into  mysql.com:/usr/home/bar/mysql-4.1.b12611
      
      3f63d9fa
    • unknown's avatar
      Merge abarkov@bk-internal.mysql.com:/home/bk/mysql-5.0 · fcdb14bb
      unknown authored
      into  mysql.com:/usr/home/bar/mysql-5.0
      
      fcdb14bb