1. 18 Mar, 2005 29 commits
    • unknown's avatar
      Merge heikki@bk-internal.mysql.com:/home/bk/mysql-5.0 · 892d7580
      unknown authored
      into hundin.mysql.fi:/home/heikki/mysql-5.0
      
      892d7580
    • unknown's avatar
      data0type.h: · 3f6d8ca8
      unknown authored
        The missing DATA_BINARY_TYPE in BLOBs created with < 4.0.14 does not cause any harm, because there were no indexes on such BLOBs
      
      
      innobase/include/data0type.h:
        The missing DATA_BINARY_TYPE in BLOBs created with < 4.0.14 does not cause any harm, because there were no indexes on such BLOBs
      3f6d8ca8
    • unknown's avatar
      data0type.ic: · ba3da184
      unknown authored
        Change the sorting order of TEXT columns in InnoDB: pad with spaces at the end in comparisons; we MUST UPDATE the MySQL MANUAL to warn about the need to rebuild tables (also MyISAM) in certain cases in an upgrade to 5.0.3; TODO: study what complications the missing DATA_BINARY_TYPE flag in InnoDB < 4.0.14 causes: we would compare then also BLOBs with space padding, not just TEXT
      
      
      innobase/include/data0type.ic:
        Change the sorting order of TEXT columns in InnoDB: pad with spaces at the end in comparisons; we MUST UPDATE the MySQL MANUAL to warn about the need to rebuild tables (also MyISAM) in certain cases in an upgrade to 5.0.3; TODO: study what complications the missing DATA_BINARY_TYPE flag in InnoDB < 4.0.14 causes: we would compare then also BLOBs with space padding, not just TEXT
      ba3da184
    • unknown's avatar
      Merge jamppa@bk-internal.mysql.com:/home/bk/mysql-5.0 · f857f147
      unknown authored
      into a193-229-222-105.elisa-laajakaista.fi:/home/my/bk/mysql-5.0
      
      
      sql/sql_parse.cc:
        Auto merged
      f857f147
    • unknown's avatar
      Merge heikki@bk-internal.mysql.com:/home/bk/mysql-5.0 · dbc39ac3
      unknown authored
      into hundin.mysql.fi:/home/heikki/mysql-5.0
      
      dbc39ac3
    • unknown's avatar
      Merge lgrimmer@bk-internal.mysql.com:/home/bk/mysql-5.0 · 6fdc7b55
      unknown authored
      into mysql.com:/space/my/mysql-5.0
      
      
      Build-tools/Do-compile:
        Auto merged
      6fdc7b55
    • unknown's avatar
      Merge mysql.com:/space/my/mysql-5.0-build · 8efae531
      unknown authored
      into mysql.com:/space/my/mysql-5.0
      
      
      Build-tools/Do-compile:
        Auto merged
      8efae531
    • unknown's avatar
      Merge kboortz@bk-internal.mysql.com:/home/bk/mysql-5.0 · b3a958d6
      unknown authored
      into mysql.com:/Users/kent/mysql/bk/mysql-5.0-compile
      
      b3a958d6
    • unknown's avatar
      - removed MyISAM RAID from the Linux "Max" RPMs · cd04f43f
      unknown authored
      cd04f43f
    • unknown's avatar
      Merge kboortz@bk-internal.mysql.com:/home/bk/mysql-5.0 · e92a6a5a
      unknown authored
      into mysql.com:/Users/kent/mysql/bk/mysql-5.0-compile
      
      
      Build-tools/Do-compile:
        Auto merged
      e92a6a5a
    • unknown's avatar
      Merge mysql.com:/Users/kent/mysql/bk/mysql-5.0-build · fd69055c
      unknown authored
      into mysql.com:/Users/kent/mysql/bk/mysql-5.0-compile
      
      fd69055c
    • unknown's avatar
      Merge mysql.com:/usr/local/bk/mysql-5.0 · 704e60f7
      unknown authored
      into mysql.com:/home/pem/work/mysql-5.0
      
      704e60f7
    • unknown's avatar
      Merge jbruehe@bk-internal.mysql.com:/home/bk/mysql-5.0 · e2c92089
      unknown authored
      into mysql.com:/M50/mysql-5.0
      
      
      Build-tools/Do-compile:
        Auto merged
      e2c92089
    • unknown's avatar
      Fixed BUG#6600: Stored procedure crash after repeated calls with check table · 91f8f7a6
      unknown authored
      
      mysql-test/r/sp.result:
        New test case for BUG#6600.
      mysql-test/t/sp.test:
        New test case for BUG#6600.
      sql/sp_head.cc:
        Added yet another multiple result set statement to the list.
      sql/sql_parse.cc:
        Have to invalidate SP caches in CHECK TABLE, or it will produce very
        strange results when called in SPs.
      91f8f7a6
    • unknown's avatar
      mysql-test-run.sh: · 7787215d
      unknown authored
        Disabled old feature to disable test cases
      
      
      mysql-test/mysql-test-run.sh:
        Disabled old feature to disable test cases
      7787215d
    • unknown's avatar
      Merge mysqldev@production.mysql.com:my/mysql-5.0-build · aff88736
      unknown authored
      into mysql.com:/M50/build-5.0.3
      
      
      Build-tools/Do-compile:
        Auto merged
      aff88736
    • unknown's avatar
      Did some SP test style changes and added explanatory comments, · f0fd4e4c
      unknown authored
      and removed a have_innodb.inc inclusion which was left by mistake
      in an earlier change.
      
      
      mysql-test/r/sp_trans.result:
        Changed procedure name and delimiter setting to follow the style of the other SP test files.
      mysql-test/t/sp-error.test:
        Added comment with hint for bug test case style.
      mysql-test/t/sp-threads.test:
        Added comments, with hint for bug test case style.
      mysql-test/t/sp.test:
        Removed have_innodb.inc inclusion.
        Added comments about different SP test files, table usage and
        hint for bug test case style.
      mysql-test/t/sp_trans.test:
        Changed procedure name and delimiter setting to follow the style of the other SP test files.
      f0fd4e4c
    • unknown's avatar
      Merge · c207b0ca
      unknown authored
      
      Build-tools/Do-compile:
        SCCS merged
      c207b0ca
    • unknown's avatar
      1078d38f
    • unknown's avatar
      Added more tests to grant2. Fixed some previous tests. · 0f29a348
      unknown authored
      Added new logic to ACL system:
      
      1) If GRANT OPTION (not mysql db):
         Ok to update existing user, but not password.
         Not allowed to make a new user.
      
      2) If UPDATE_ACL to mysql DB:
         Ok to update current user, but not make a new one.
      
      3) If INSERT_ACL to mysql DB:
         Ok to add a new user, but not modify existing.
      
      4) If GRANT OPTION to mysql DB:
         All modifications OK.
      
      
      mysql-test/r/grant2.result:
        Added more ACL tests and fixed results in some old tests.
      mysql-test/t/grant2.test:
        Added more ACL tests and fixed results in some old tests.
      sql/sql_acl.h:
        Made check_acl_user() visible to sql_parse.cc
      sql/sql_parse.cc:
        Added new logic to ACL system:
        
        1) If GRANT OPTION (not mysql db):
           Ok to update existing user, but not password.
           Not allowed to make a new user.
        
        2) If UPDATE_ACL to mysql DB:
           Ok to update current user, but not make a new one.
        
        3) If INSERT_ACL to mysql DB:
           Ok to add a new user, but not modify existing.
        
        4) If GRANT OPTION to mysql DB:
           All modifications OK.
      0f29a348
    • unknown's avatar
      Merge heikki@bk-internal.mysql.com:/home/bk/mysql-5.0 · 8c69d59a
      unknown authored
      into hundin.mysql.fi:/home/heikki/mysql-5.0
      
      8c69d59a
    • unknown's avatar
      Manual merge · 4ef1272b
      unknown authored
      
      BitKeeper/etc/logging_ok:
        auto-union
      mysql-test/r/olap.result:
        Auto merged
      sql/sql_select.cc:
        Auto merged
      BitKeeper/deleted/.del-isamchk.1.in~9d44303f6d951962:
        Auto merged
      BitKeeper/deleted/.del-isamlog.1.in~416d91adbf665b19:
        Auto merged
      4ef1272b
    • unknown's avatar
      olap.test: · c5c5810d
      unknown authored
        Added a test case for bug #8617.
      sql_select.cc:
        Fixed bug #8617.
        Queries with ROLLUP and LIMIT n returned more than n rows
        if SQL_CALC_FOUND_ROWS was used.
      
      
      sql/sql_select.cc:
        Fixed bug #8617.
        Queries with ROLLUP and LIMIT n returned more than n rows
        if SQL_CALC_FOUND_ROWS was used.
      mysql-test/t/olap.test:
        Added a test case for bug #8617.
      c5c5810d
    • unknown's avatar
      Merge bk-internal:/home/bk/mysql-5.0 · 9592f901
      unknown authored
      into mysql.com:/home/jimw/my/mysql-5.0-clean
      
      9592f901
    • unknown's avatar
      Merge mysql.com:/home/jimw/my/mysql-5.0-build · 2be4208e
      unknown authored
      into mysql.com:/home/jimw/my/mysql-5.0-clean
      
      2be4208e
    • unknown's avatar
      Merge mysqldev@production.mysql.com:my/mysql-5.0-build · 85bb49b8
      unknown authored
      into mysql.com:/home/jimw/my/mysql-5.0-build
      
      85bb49b8
    • unknown's avatar
      Fix merge of sql/sql_select.cc using Igor's patch (Bug #9254) · 52c1c2fd
      unknown authored
      
      sql/sql_select.cc:
        Post-merge correction
      52c1c2fd
    • unknown's avatar
      Merge heikki@bk-internal.mysql.com:/home/bk/mysql-5.0 · 9659841b
      unknown authored
      into hundin.mysql.fi:/home/heikki/mysql-5.0
      
      9659841b
    • unknown's avatar
      Merge mysql.com:/space/my/mysql-5.0-build · 74704851
      unknown authored
      into mysql.com:/space/my/mysql-5.0
      
      74704851
  2. 17 Mar, 2005 11 commits