1. 11 Mar, 2005 8 commits
    • unknown's avatar
      Merge mysql.com:/home/jimw/my/mysql-5.0-8902 · 0104e6cb
      unknown authored
      into mysql.com:/home/jimw/my/mysql-5.0-clean
      
      
      sql/mysql_priv.h:
        Auto merged
      0104e6cb
    • unknown's avatar
      Merge query_cache tests · 93b6c38f
      unknown authored
      
      Build-tools/Do-compile:
        Auto merged
      mysql-test/mysql-test-run.sh:
        Auto merged
      mysql-test/r/join_outer.result:
        Auto merged
      mysql-test/t/join_outer.test:
        Auto merged
      scripts/make_win_src_distribution.sh:
        Auto merged
      scripts/mysqld_safe.sh:
        Auto merged
      sql/item_cmpfunc.h:
        Auto merged
      sql/sql_table.cc:
        Auto merged
      mysql-test/r/query_cache.result:
        Update results
      mysql-test/t/query_cache.test:
        Merge test
      93b6c38f
    • unknown's avatar
      Merge mysql.com:/home/jimw/my/mysql-4.1-8513 · 98e0d2a2
      unknown authored
      into mysql.com:/home/jimw/my/mysql-4.1-clean
      
      98e0d2a2
    • unknown's avatar
      Merge test and results · 876b433e
      unknown authored
      
      sql/sql_table.cc:
        Auto merged
      mysql-test/r/query_cache.result:
        Update results
      mysql-test/t/query_cache.test:
        Merge tests
      876b433e
    • unknown's avatar
      Merge jbruehe@bk-internal.mysql.com:/home/bk/mysql-4.1 · ac748c78
      unknown authored
      into mysql.com:/M41/mysql-4.1
      
      ac748c78
    • unknown's avatar
      Keep the Perl version of 'mysql-test-run' in sync with the shell script. · 76fdf47b
      unknown authored
      
      mysql-test/lib/mtr_report.pl:
        Keep the Perl version in sync with the shell script so that 'Do-compile' will call
        PS and ES tests even after some previous test failures.
        (See previous change to 'mysql-test-run.sh' and 'Do-compile'.)
      76fdf47b
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1 · 4a158db4
      unknown authored
      into here.mwagner.org:/Users/mwagner/work/bk/mysql-4.1
      
      4a158db4
    • unknown's avatar
      Do-solaris-pkg: · 93d8093e
      unknown authored
        Many changes to improve error handling, and fix problem of multiple packaging processes trampling each other (32 & 64bit at the same time)
      
      
      Build-tools/Do-solaris-pkg:
        Many changes to improve error handling, and fix problem of multiple packaging processes trampling each other (32 & 64bit at the same time)
      93d8093e
  2. 10 Mar, 2005 23 commits
    • unknown's avatar
      Merge · 9e57dd00
      unknown authored
      
      sql/item_cmpfunc.h:
        Auto merged
      mysql-test/r/join_outer.result:
        SCCS merged
      mysql-test/t/join_outer.test:
        SCCS merged
      9e57dd00
    • unknown's avatar
      Fix for BUG#8711: "<=>" may have true value for NULL arguments, so make · b2dae8bd
      unknown authored
      Item_func_equal::not_null_tables() always return 0.
      
      
      mysql-test/r/join_outer.result:
        Testcase for BUG#8711
      mysql-test/t/join_outer.test:
        Testcase for BUG#8711
      sql/item_cmpfunc.h:
        Fix for BUG#8711: "<=>" may have true value for NULL arguments, i.e. it can accept NULL-complemented 
        table rows. This differs from assumptions made in Item_func::not_null_tables(), so add 
        Item_func_equal::not_null_tables().
        Item_func_equal::not_null_tables_cache value doesn't make sense now, but we still let it be
        calculated (and ignore it)
      b2dae8bd
    • unknown's avatar
      Correct "make_win_src_distribution" to not introduce additional directory layers, · 68b82f08
      unknown authored
      adapt the Windows build files accordingly.
      
      
      VC++Files/tests/mysql_client_test.dsp:
        As the directory structure on Windows now resembles that on Unix (no more
        "tests/tests", by the correction in "make_win_src_distribution.sh"), the location
        of "mysql_client_test.*" has changed. Adapt the build tools accordingly.
      VC++Files/tests/mysql_client_test_ia64.dsp:
        As the directory structure on Windows now resembles that on Unix (no more
        "tests/tests", by the correction in "make_win_src_distribution.sh"), the location
        of "mysql_client_test.*" has changed. Adapt the build tools accordingly.
      scripts/make_win_src_distribution.sh:
        1) The semantics of "cp -R src targ" depend on the (non)existence of "targ".
        By simply doing "$CP -R $i $BASE/$i", the directory hierarchy below $BASE differed
        from the source for each "$i" that already existed as a target directory.
        This is now prevented by checking the existence and adapting the command.
        
        2) Comment where "$BASE" (the target directory) comes into existence.
        
        3) Introduce an "abort" function as a start point for more sanity checks, use it.
      68b82f08
    • unknown's avatar
      More portability fixes · 346e358a
      unknown authored
      346e358a
    • unknown's avatar
      Merge mysql.com:/M41/mysql-4.1 into mysql.com:/M41/push-4.1 · 3bd5de1e
      unknown authored
      
      Build-tools/Do-compile:
        Auto merged
      mysql-test/mysql-test-run.sh:
        Auto merged
      3bd5de1e
    • unknown's avatar
      Merge marko@bk-internal.mysql.com:/home/bk/mysql-5.0 · 2e21369e
      unknown authored
      into hundin.mysql.fi:/home/marko/mysql-5.0
      
      2e21369e
    • unknown's avatar
      Merge mysql.com:/home/timka/mysql/src/5.0-virgin · de2af8cb
      unknown authored
      into mysql.com:/home/timka/mysql/src/5.0-dbg
      
      de2af8cb
    • unknown's avatar
      InnoDB: Keep the "compact format" flag in SYS_TABLES.N_COLS · 23ceb9a6
      unknown authored
      instead of SYS_TABLES.MIX_LEN, because the latter was not
      initialized to zero in old MySQL 3.23 releases. This will break
      existing MySQL/InnoDB 5.0.3-bk databases for which
      SHOW TABLE STATUS displays Row_format=Compact.
      
      
      innobase/dict/dict0crea.c:
        Write the "compact format" flag to N_COLS instead of MIX_LEN.
        Remove corruption analysis for MIX_LEN, as it has been tracked down
        to MySQL 3.23.4x not initializing MIX_LEN.
      innobase/dict/dict0load.c:
        Read the "compact format" flag from N_COLS instead of MIX_LEN.
      23ceb9a6
    • unknown's avatar
      Merge marko@bk-internal.mysql.com:/home/bk/mysql-5.0 · 50dbe323
      unknown authored
      into hundin.mysql.fi:/home/marko/mysql-5.0
      
      50dbe323
    • unknown's avatar
      rem0rec.h: · fe0fd907
      unknown authored
        Restore sensible values to REC_OFFS_NORMAL_SIZE and REC_OFFS_SMALL_SIZE.
      
      
      innobase/include/rem0rec.h:
        Restore sensible values to REC_OFFS_NORMAL_SIZE and REC_OFFS_SMALL_SIZE.
      fe0fd907
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.0 · 9d97417a
      unknown authored
      into mysql.com:/home/dlenev/src/mysql-5.0-sp
      
      9d97417a
    • unknown's avatar
      InnoDB: Introduce the symbols REC_OFFS_NORMAL_SIZE and · b581eb44
      unknown authored
      REC_OFFS_SMALL_SIZE for the initial allocation sizes of
      arrays passed to rec_get_offsets().
      
      
      innobase/btr/btr0btr.c:
        s/100/REC_OFFS_NORMAL_SIZE/
      innobase/btr/btr0cur.c:
        s/100/REC_OFFS_NORMAL_SIZE/
      innobase/btr/btr0sea.c:
        s/100/REC_OFFS_NORMAL_SIZE/
      innobase/include/rem0rec.h:
        Define REC_OFFS_NORMAL_SIZE and REC_OFFS_SMALL_SIZE.
      innobase/lock/lock0lock.c:
        s/100/REC_OFFS_NORMAL_SIZE/
      innobase/page/page0cur.c:
        s/100/REC_OFFS_NORMAL_SIZE/
      innobase/page/page0page.c:
        s/100/REC_OFFS_NORMAL_SIZE/
      innobase/rem/rem0rec.c:
        s/100/REC_OFFS_NORMAL_SIZE/
      innobase/row/row0ins.c:
        s/100/REC_OFFS_NORMAL_SIZE/
      innobase/row/row0mysql.c:
        s/100/REC_OFFS_NORMAL_SIZE/
      innobase/row/row0purge.c:
        s/100/REC_OFFS_NORMAL_SIZE/
      innobase/row/row0row.c:
        s/100/REC_OFFS_NORMAL_SIZE/
      innobase/row/row0sel.c:
        s/100/REC_OFFS_NORMAL_SIZE/
        s/10/REC_OFFS_SMALL_SIZE/
      innobase/row/row0undo.c:
        s/100/REC_OFFS_NORMAL_SIZE/
      innobase/row/row0upd.c:
        s/100/REC_OFFS_NORMAL_SIZE/
        s/10/REC_OFFS_SMALL_SIZE/
      innobase/trx/trx0rec.c:
        s/100/REC_OFFS_NORMAL_SIZE/
      b581eb44
    • unknown's avatar
      Fix for sp.test failure in --ps-protocol mode (2nd attempt). · 384faf57
      unknown authored
      Now we should call open_and_lock_tables() even if table list is empty -
      to cache stored routines used by query and open and lock tables required
      for their execution.
      
      
      sql/sql_insert.cc:
        Now we should call open_and_lock_tables() even if table list is empty -
        to cache stored routines used by query and open and lock tables required
        for their execution.
      sql/sql_prepare.cc:
        Now we should call open_and_lock_tables() even if table list is empty -
        to cache stored routines used by query and open and lock tables required
        for their execution. Thus we have to move most of functionality from 
        select_like_statement_test() to separate function to be able to reuse it
        for multi-update processing (for which tables are open and locked in 
        mysql_multi_update_prepare() call).
      384faf57
    • unknown's avatar
      Merge · dd11c15d
      unknown authored
      
      mysql-test/r/select.result:
        Auto merged
      mysql-test/t/select.test:
        Auto merged
      sql/filesort.cc:
        Auto merged
      sql/item.cc:
        SCCS merged
      dd11c15d
    • unknown's avatar
      Merge tulin@bk-internal.mysql.com:/home/bk/mysql-5.0 · 24dcc5a4
      unknown authored
      into poseidon.ndb.mysql.com:/home/tomas/mysql-5.0
      
      24dcc5a4
    • unknown's avatar
      Merge mysql.com:/home/timka/mysql/src/4.1-bug-7425 · 17e5d856
      unknown authored
      into mysql.com:/home/timka/mysql/src/4.1-dbg
      
      17e5d856
    • unknown's avatar
      Merge tulin@bk-internal.mysql.com:/home/bk/mysql-5.0 · 61c09448
      unknown authored
      into poseidon.ndb.mysql.com:/home/tomas/mysql-5.0
      
      
      sql/ha_ndbcluster.cc:
        Auto merged
      61c09448
    • unknown's avatar
      Merge hundin.mysql.fi:/home/heikki/mysql-4.1 · d8047199
      unknown authored
      into hundin.mysql.fi:/home/heikki/mysql-5.0
      
      
      innobase/log/log0recv.c:
        Auto merged
      ndb/include/mgmapi/mgmapi_config_parameters.h:
        Auto merged
      ndb/src/mgmsrv/ConfigInfo.cpp:
        Auto merged
      d8047199
    • unknown's avatar
      Merge heikki@bk-internal.mysql.com:/home/bk/mysql-4.1 · fe6c8afe
      unknown authored
      into hundin.mysql.fi:/home/heikki/mysql-4.1
      
      fe6c8afe
    • unknown's avatar
      Merge mysql.com:/home/jonas/src/fix · e84ad1c3
      unknown authored
      into mysql.com:/home/jonas/src/mysql-4.1
      
      
      ndb/src/kernel/blocks/trix/Trix.cpp:
        Auto merged
      ndb/src/mgmsrv/ConfigInfo.cpp:
        Auto merged
      e84ad1c3
    • unknown's avatar
      Merge joreland@bk-internal.mysql.com:/home/bk/mysql-4.1 · 164c3b5b
      unknown authored
      into mysql.com:/home/jonas/src/mysql-4.1
      
      164c3b5b
    • unknown's avatar
      bug#9089 · eb5afb70
      unknown authored
      ndb - Reenable MAX_OPEN_FILES to enable LCP in some situations
      
      
      ndb/include/mgmapi/mgmapi_config_parameters.h:
        Reenable MAX_OPEN_FILES to enable LCP in some situations
      ndb/src/kernel/blocks/ndbfs/Ndbfs.cpp:
        Reenable MAX_OPEN_FILES to enable LCP in some situations
      ndb/src/mgmsrv/ConfigInfo.cpp:
        Reenable MAX_OPEN_FILES to enable LCP in some situations
      eb5afb70
    • unknown's avatar
      Merge rurik.mysql.com:/home/igor/dev/mysql-4.1-0 · fba3d8fa
      unknown authored
      into rurik.mysql.com:/home/igor/dev/mysql-5.0-0
      
      
      mysql-test/r/func_str.result:
        Auto merged
      mysql-test/t/func_str.test:
        Auto merged
      netware/BUILD/mwenv:
        Auto merged
      sql/item_strfunc.cc:
        Auto merged
      fba3d8fa
  3. 09 Mar, 2005 9 commits