1. 02 Sep, 2006 1 commit
  2. 01 Sep, 2006 7 commits
    • unknown's avatar
      Merge perch.ndb.mysql.com:/home/jonas/src/mysql-5.0 · 1274f4af
      unknown authored
      into  perch.ndb.mysql.com:/home/jonas/src/mysql-5.0-ndb
      
      1274f4af
    • unknown's avatar
      Merge maint2.mysql.com:/data/localhome/tsmith/bk/41 · 796b1100
      unknown authored
      into  maint2.mysql.com:/data/localhome/tsmith/bk/50
      
      
      mysql-test/r/ctype_utf8.result:
        Auto merged
      mysql-test/t/ctype_utf8.test:
        Auto merged
      sql/net_serv.cc:
        Auto merged
      sql/sql_lex.cc:
        Auto merged
      sql/sql_select.cc:
        Auto merged
      sql/sql_yacc.yy:
        Auto merged
      vio/viosocket.c:
        Auto merged
      client/mysql.cc:
        Manual merge.
      mysql-test/t/ctype_recoding.test:
        Manual merge.
      sql/sql_lex.h:
        SCCS merged
      sql/sql_table.cc:
        Manual merge.
      mysql-test/r/ctype_recoding.result:
        Manual merge
      796b1100
    • unknown's avatar
      Merge bk-internal:/home/bk/mysql-5.0-maint · 99b4f1c7
      unknown authored
      into  rama.(none):/home/jimw/my/mysql-5.0-clean
      
      99b4f1c7
    • unknown's avatar
      Restore bug fix lost in merge of client/mysqldump.c, and clean up mysqldump.test · fe4e199c
      unknown authored
      so that 4.1 and 5.0 tests are all in the right place and no tests are duplicated.
      
      
      client/mysqldump.c:
        Restore fix for bug 21215 accidently removed during merge
      mysql-test/r/mysqldump.result:
        Update results
      mysql-test/t/mysqldump.test:
        Fix order of tests so that all the tests new to the 5.0 tree come after
        "End of 4.1 tests", and so that each leaves things in the state it found
        them (particularly by returning to the 'test' database. Also remove some
        tests that were duplicated.
      fe4e199c
    • unknown's avatar
      post-merge fix · 0e2d8dfe
      unknown authored
      0e2d8dfe
    • unknown's avatar
      Merge maint2.mysql.com:/data/localhome/tsmith/bk/41 · 4c70f677
      unknown authored
      into  maint2.mysql.com:/data/localhome/tsmith/bk/50
      
      
      mysql-test/r/heap_btree.result:
        Auto merged
      sql/set_var.cc:
        Auto merged
      mysql-test/t/heap_btree.test:
        Manual merge.
      4c70f677
    • unknown's avatar
      Resolve conflicts · 4fcc192a
      unknown authored
      4fcc192a
  3. 31 Aug, 2006 11 commits
  4. 30 Aug, 2006 16 commits
  5. 29 Aug, 2006 5 commits
    • unknown's avatar
      Post-merge fixes. · b07cb8f3
      unknown authored
      
      mysql-test/r/view.result:
        A post-merge fix.
      mysql-test/t/grant.test:
        A post-merge fix.
      mysql-test/t/view.test:
        A post-merge fix.
      b07cb8f3
    • unknown's avatar
      Merge kboortz@bk-internal.mysql.com:/home/bk/mysql-5.0 · 1a3071d1
      unknown authored
      into  mysql.com:/Users/kent/mysql/bk/mysql-5.0
      
      1a3071d1
    • unknown's avatar
      Remove the fix for Bug#10668 "CREATE USER does not enforce username · 0222b94c
      unknown authored
      length limit", it's superseded by the fix for Bug#16899 "Possible buffer
      overflow in handling of DEFINER-clause". Update test results.
      
      
      mysql-test/r/grant.result:
        A post-merge fix.
      mysql-test/t/grant.test:
        A new error is returned, use the default database after drop database.
      sql/sql_acl.cc:
        Remove an unneeded check.
      0222b94c
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.0 · a8406889
      unknown authored
      into  bodhi.local:/opt/local/work/mysql-5.0-14897
      
      
      configure.in:
        Auto merged
      mysql-test/mysql-test-run.pl:
        Auto merged
      mysql-test/r/im_life_cycle.result:
        Auto merged
      mysql-test/t/im_life_cycle.imtest:
        Auto merged
      sql/field.cc:
        Auto merged
      sql/item.cc:
        Auto merged
      sql/item.h:
        Auto merged
      sql/item_cmpfunc.cc:
        Auto merged
      sql/item_func.cc:
        Auto merged
      sql/item_strfunc.cc:
        Auto merged
      sql/item_strfunc.h:
        Auto merged
      sql/mysql_priv.h:
        Auto merged
      sql/mysqld.cc:
        Auto merged
      sql/sql_acl.cc:
        Auto merged
      sql/sql_class.cc:
        Auto merged
      sql/sql_parse.cc:
        Auto merged
      sql/sql_view.cc:
        Auto merged
      sql/sql_yacc.yy:
        Auto merged
      sql/share/errmsg.txt:
        Auto merged
      mysql-test/r/grant.result:
        Manual merge.
      mysql-test/r/view.result:
        Manual merge.
      mysql-test/t/grant.test:
        Manual merge.
      mysql-test/t/view.test:
        Manual merge.
      a8406889
    • unknown's avatar
      A fix for Bug#14897 "ResultSet.getString("table.column") sometimes · a4b93dcc
      unknown authored
      doesn't find the column"
      
      When a user was using 4.1 tables with VARCHAR column and 5.0 server
      and a query that used a temporary table to resolve itself, the
      table metadata for the varchar column sent to client was incorrect:
      MYSQL_FIELD::table member was empty.
      
      The bug was caused by implicit "upgrade" from old VARCHAR to new
      VARCHAR hard-coded in Field::new_field, which did not preserve
      the information about the original table. Thus, the field metadata
      of the "upgraded" field pointed to an auxiliary temporary table
      created for query execution.
      
      The fix is to copy the pointer to the original table to the new field.
      
      
      mysql-test/r/type_varchar.result:
        Update test results (Bug#14897)
      mysql-test/t/type_varchar.test:
        Add a test case for Bug#14897 "ResultSet.getString("table.column") 
        sometimes doesn't find the column"
      sql/field.cc:
        Preserve the original table name when converting fields from 
        old VARCHAR to new VARCHAR.
      mysql-test/std_data/14897.frm:
        New BitKeeper file ``mysql-test/std_data/14897.frm''
      a4b93dcc