1. 06 Mar, 2006 4 commits
    • unknown's avatar
      post-merge fix · 76e5c1b4
      unknown authored
      76e5c1b4
    • unknown's avatar
      4.1 -> 5.0 merge · 7d24c7d4
      unknown authored
      
      mysql-test/t/grant.test:
        Auto merged
      mysql-test/r/grant.result:
        manual merge
      sql/sql_acl.cc:
        manual merge
      7d24c7d4
    • unknown's avatar
      Fix for bug#14385 GRANT and mapping to correct user account problems · 3ecf9f04
      unknown authored
        Check if the host of table hash record exactly matches host from GRANT command
      
      
      mysql-test/r/grant.result:
        Fix for bug#14385 GRANT and mapping to correct user account problems
          test case
      mysql-test/t/grant.test:
        Fix for bug#14385 GRANT and mapping to correct user account problems
          test case
      3ecf9f04
    • unknown's avatar
      Fix for bug#16678 FORMAT gives wrong result if client run with default-character-set=utf8 · bb453729
      unknown authored
        calculate Item_func_format::max_length using charset->mbmaxlen
      
      
      mysql-test/r/func_math.result:
        Fix for bug#16678 FORMAT gives wrong result if client run with default-character-set=utf8
          test case
      mysql-test/t/func_math.test:
        Fix for bug#16678 FORMAT gives wrong result if client run with default-character-set=utf8
          test case
      bb453729
  2. 05 Mar, 2006 1 commit
  3. 04 Mar, 2006 8 commits
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1 · 74bbf416
      unknown authored
      into  mysql.com:/opt/local/work/mysql-5.0-root
      
      
      libmysql/libmysql.c:
        Manual merge: use local.
      tests/mysql_client_test.c:
        Manual merge: use local.
      74bbf416
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1 · 6bbc1cd4
      unknown authored
      into  mysql.com:/opt/local/work/mysql-5.0-root
      
      
      mysql-test/t/heap.test:
        Auto merged
      mysql-test/r/heap.result:
        SCCS merged
      6bbc1cd4
    • unknown's avatar
      Revert the changeset for Bug#16144 "mysql_stmt_attr_get type error": · 4391f938
      unknown authored
      it breaks binary compatibility. The patch will be left intact
      in 5.1.
      
      
      libmysql/libmysql.c:
        Revert the changeset for Bug#16144: it breaks binary compatibility.
      tests/mysql_client_test.c:
        Revert the changeset for Bug#16144: it breaks binary compatibility.
      4391f938
    • unknown's avatar
      Merge mysql.com:/home/dlenev/src/mysql-5.0-bg17866-2 · fc969bbc
      unknown authored
      into  mysql.com:/home/dlenev/src/mysql-5.0-merges
      
      
      mysql-test/r/sp.result:
        Auto merged
      mysql-test/t/sp.test:
        Auto merged
      sql/sql_yacc.yy:
        Auto merged
      fc969bbc
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1 · 2fe80956
      unknown authored
      into  mysql.com:/opt/local/work/mysql-4.1-root
      
      
      mysql-test/r/heap.result:
        Auto merged
      mysql-test/t/heap.test:
        Auto merged
      2fe80956
    • unknown's avatar
      Fix for bug #17866 "Problem with renaming table with triggers with fully · 350475fa
      unknown authored
      qualified subject table" which was introduced during work on bug #13525
      "Rename table does not keep info of triggers".
      
      The bug was caused by the fact that during reconstruction of CREATE TRIGGER
      statement stored in .TRG file which happened during RENAME TABLE we damaged
      trigger definition in case when it contained fully qualified name of subject
      table (see comment for sql_yacc.yy for more info).
      
      
      mysql-test/r/trigger.result:
        Added test for bug #17866 "Problem with renaming table with triggers with fully
        qualified subject table".
      mysql-test/t/trigger.test:
        Added test for bug #17866 "Problem with renaming table with triggers with fully
        qualified subject table".
      sql/sql_trigger.cc:
        Table_triggers_list::change_table_name_in_triggers():
          Instead of trying to use pointer to the end of subject table identifier
          we use pointer to the beginning of FOR lexeme now, so during reconstruction
          of CREATE TRIGGER statement in this function we need to add extra space
          before part which begins with FOR to get nice trigger definition.
      sql/sql_yacc.yy:
        trigger_tail:
          In this rule we can't rely on using remember_end token after table_ident token,
          since value returned depends on whether table name is fully qualified or not.
          So instead of trying to get pointer to the end of table identifier we use
          pointer to the beginning of FOR lexeme.
      350475fa
    • unknown's avatar
      Merge mysql.com:/home/mydev/mysql-4.1 · 93b7fe4d
      unknown authored
      into  mysql.com:/home/mydev/mysql-4.1-bug11527
      
      
      93b7fe4d
    • unknown's avatar
      Merge mysql.com:/home/mydev/mysql-5.0 · f8862a05
      unknown authored
      into  mysql.com:/home/mydev/mysql-5.0-bug11527
      
      
      f8862a05
  4. 03 Mar, 2006 24 commits
  5. 02 Mar, 2006 3 commits
    • unknown's avatar
      Merge svlasenko@bk-internal.mysql.com:/home/bk/mysql-5.0 · 44c175b7
      unknown authored
      into  selena.:H:/MYSQL/src/#17595-mysql-5.0
      
      
      44c175b7
    • unknown's avatar
      Merge mysql.com:/extern/mysql/bk/mysql-5.0 · ffd4bf58
      unknown authored
      into  mysql.com:/extern/mysql/5.0/bug17476/mysql-5.0
      
      
      ffd4bf58
    • unknown's avatar
      Fixed BUG#17476: Stored procedure not returning data when it is called first · 7865ce61
      unknown authored
                       time per connection
        Removed const_string() method from Item_string (it was only used in one
        place, in a bad way). Defer possible SP variable, and access data directly
        instead, in date_format item.
      
      
      mysql-test/r/sp.result:
        Updated results for new test (BUG#17476).
      mysql-test/t/sp.test:
        New test case (BUG#17476)
      sql/item.h:
        Removed const_string() from Item_string.
        It was only used in one place, and we can just use str_value in Item directly.
      sql/item_timefunc.cc:
        Must defer a (possible) local SP variable to use max_length and str_value
        in Item_func_date_format::fix_length_and_dec(), and refer to str_value
        directly without the const_string() method (now removed); the cast didn't
        work in all cases anyway.
      7865ce61