1. 07 Oct, 2004 3 commits
  2. 06 Oct, 2004 3 commits
    • unknown's avatar
      Enabled the writing of a pid file on Windows. · 10cd526d
      unknown authored
      mysqld.cc:
        Added call to create_pid_file to start_signal_handler on windows.  Also removed the #ifndef WINDOWS from two calls that deletes the pid file
      
      
      sql/mysqld.cc:
        Added call to create_pid_file to start_signal_handler on windows.  Also removed the #ifndef WINDOWS from two calls that deletes the pid file
      10cd526d
    • unknown's avatar
      forgot to remove ndbrequire · e82d3d49
      unknown authored
      
      ndb/test/run-test/atrt-mysql-test-run:
        ...
      e82d3d49
    • unknown's avatar
      bug#5736, subqueries and not in · 838af107
      unknown authored
      and testcases
      
      
      ndb/src/kernel/blocks/dbtc/DbtcMain.cpp:
        bug#5736, subqueries and not in
      sql/ha_ndbcluster.cc:
        bug#5736, subqueries and not in
      838af107
  3. 05 Oct, 2004 17 commits
  4. 04 Oct, 2004 17 commits
    • unknown's avatar
      InnoDB: Fix ALTER TABLE t DISCARD TABLESPACE (Bug #5851) · ec735ea8
      unknown authored
      
      innobase/include/ut0mem.h:
        Improve documentation of ut_strlenq(), ut_strcpyq() and ut_memcpyq()
      innobase/include/ut0mem.ic:
        Improve documentation of ut_strlenq()
      innobase/row/row0mysql.c:
        row_discard_tablespace_for_mysql(): Add quotes around table_name
        in DISCARD_TABLESPACE_PROC (Bug #5851)
      innobase/ut/ut0mem.c:
        Improve documentation of ut_strcpyq() and ut_memcpyq()
      ec735ea8
    • unknown's avatar
      lock0lock.c: · ef40ba04
      unknown authored
        Fix compiler warning
      
      
      innobase/lock/lock0lock.c:
        Fix compiler warning
      ef40ba04
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1 · d36e6019
      unknown authored
      into mysql.com:/home/dlenev/src/mysql-4.1-ryan
      
      
      d36e6019
    • unknown's avatar
      Merge jbruehe@bk-internal.mysql.com:/home/bk/mysql-4.1 · f4bd4e60
      unknown authored
      into mysql.com:/M41/mysql-4.1
      
      
      f4bd4e60
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1 · 5b47c974
      unknown authored
      into mysql.com:/home/dlenev/src/mysql-4.1-ryan
      
      
      5b47c974
    • unknown's avatar
      ae14bc77
    • unknown's avatar
      corrected merge error rgarding NDB_CONNECTSTRING · 0afb328e
      unknown authored
      0afb328e
    • unknown's avatar
      added debug printouts in ndbapi · 1c0213eb
      unknown authored
      1c0213eb
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1 · 6ed4888c
      unknown authored
      into mysql.com:/home/dlenev/src/mysql-4.1-ryan
      
      
      6ed4888c
    • unknown's avatar
      Made TIMESTAMP NULL columns without explicit DEFAULT value to be always · 76c9e10e
      unknown authored
      treated as DEFAULT NULL columns (independently from their position in
      table).
      
      (still to be discussed with Monty, Brian, Trudy et al. before push)
      
      
      mysql-test/r/type_timestamp.result:
        Update test after making TIMESTAMP NULL columns without explicit 
        DEFAULT value to be always treated as DEFAULT NULL columns 
        (independently from their position in table).
      mysql-test/t/type_timestamp.test:
        Update test after making TIMESTAMP NULL columns without explicit 
        DEFAULT value to be always treated as DEFAULT NULL columns 
        (independently from their position in table).
      sql/sql_parse.cc:
        add_field_to_list(): made TIMESTAMP NULL columns without explicit 
        DEFAULT value to be always treated as DEFAULT NULL columns (independently
        from their position in table). This also simplifies code a bit.
      76c9e10e
    • unknown's avatar
      Merge poseidon.ndb.mysql.com:/home/tomas/mysql-4.1 · 8f9e1eb5
      unknown authored
      into poseidon.ndb.mysql.com:/home/tomas/mysql-4.1-ndb-merge
      
      
      sql/ha_ndbcluster.cc:
        Auto merged
      8f9e1eb5
    • unknown's avatar
      typo · 4d288838
      unknown authored
      4d288838
    • unknown's avatar
      Merge · 035d92f4
      unknown authored
      
      sql/sql_show.cc:
        Auto merged
      sql/ha_ndbcluster.cc:
        SCCS merged
      035d92f4
    • unknown's avatar
      Merge tulin@bk-internal.mysql.com:/home/bk/mysql-4.1 · ab600d16
      unknown authored
      into poseidon.ndb.mysql.com:/home/tomas/mysql-4.1
      
      
      ab600d16
    • unknown's avatar
      bug #5872, transactions should only be restarted with transaction.on flag off... · 5e458aac
      unknown authored
      bug #5872, transactions should only be restarted with transaction.on flag off if execute_commit has been performed
      added testcase for this
      use force send for all executes
      
      
      mysql-test/r/ndb_blob.result:
        added testcase for alter table of blob from ndb to myisam
      mysql-test/t/ndb_blob.test:
        added testcase for alter table of blob from ndb to myisam
      sql/ha_ndbcluster.cc:
        bug #5872, transactions should only be restarted with transaction.on flag off if execute_commit has been performed
        use force send for all executes
      5e458aac
    • unknown's avatar
      A couple of typos fixed. · 48bf8259
      unknown authored
      
      sql/item.cc:
        A typo fixed in a comment, which is probably not valid any more
      sql/sql_class.h:
        no such class Ttem_subselect.
      48bf8259
    • unknown's avatar
      To allow compilation on Tru64, the MySQL code should not mess · 1d060ec0
      unknown authored
      with the system-reserved (and system-defined) '_REENTRANT' 
      CPP identifier.
      Especially, it must not be "undefine"d, because the Tru64 compiler
      needs it if threads are enabled.
      
      
      include/my_pthread.h:
        On Tru64, '_REENTRANT' is set by the compiler when the "-pthread" 
        option is given, and it must be set when the system's 'pthread.h' is 
        included (or else a '#error' is activated).
        So it must not be undef'ed, and it should not be def'ed either, as it
        is a system-reserved CPP identifier with which we should not mess
        anyway - it is risky to use it!
        Build on all platforms was checked privately, change caused no errors!
      1d060ec0