1. 27 Mar, 2007 2 commits
    • unknown's avatar
      Merge zippy.cornsilk.net:/home/cmiller/work/mysql/bug27047/my50-prece-bug27047 · 3b0c6e65
      unknown authored
      into  zippy.cornsilk.net:/home/cmiller/work/mysql/mysql-5.0-maint
      
      
      sql/sql_show.cc:
        Auto merged
      3b0c6e65
    • unknown's avatar
      Bug#26600: table PROFILING in INFORMATION SCHEMA has wrong data type · 60fb9a03
      unknown authored
      Bug#27047[partial]: INFORMATION_SCHEMA table cannot have BIGINT \
      	fields
      
      No Information_schema table has ever needed floating-point data 
      before.  Transforming all floating point to a string and back to a
      number causes a real data problem on Windows, where the libc may 
      pad the exponent with more leading zeroes than we expect and the
      significant digits are truncated away.
      
      This also makes interpreting an unimplemented type as a string into
      a fatal error in debug builds.  Thus, we will catch problems when we
      try to use those types in new I_S tables.
      
      
      sql/sql_show.cc:
        Add floating-point types to information_schema output.
      60fb9a03
  2. 22 Mar, 2007 5 commits
  3. 21 Mar, 2007 14 commits
  4. 20 Mar, 2007 19 commits
    • unknown's avatar
      Merge mysql.com:/home/kent/bk/tmp/mysql-5.0-release · 309a36f6
      unknown authored
      into  mysql.com:/home/kent/bk/tmp/mysql-5.0-build
      
      
      309a36f6
    • unknown's avatar
      Merge quadxeon.mysql.com:/benchmarks/ext3/TOSAVE/tsmith/bk/mar20/maint/41 · bbe0990b
      unknown authored
      into  quadxeon.mysql.com:/benchmarks/ext3/TOSAVE/tsmith/bk/mar20/maint/50
      
      
      sql/sql_class.cc:
        Auto merged
      bbe0990b
    • unknown's avatar
      Merge pilot.blaudden:/home/msvensson/mysql/mysql-4.1-maint · 971f15f8
      unknown authored
      into  pilot.blaudden:/home/msvensson/mysql/mysql-5.0-maint
      
      
      client/mysqltest.c:
        Auto merged
      971f15f8
    • unknown's avatar
      Merge tsmith@bk-internal.mysql.com:/home/bk/mysql-5.0-ndb · 4fed8327
      unknown authored
      into  quadxeon.mysql.com:/benchmarks/ext3/TOSAVE/tsmith/bk/mar20/maint/50
      
      
      4fed8327
    • unknown's avatar
      Merge tsmith@bk-internal.mysql.com:/home/bk/mysql-5.0-build · 6bb78b95
      unknown authored
      into  quadxeon.mysql.com:/benchmarks/ext3/TOSAVE/tsmith/bk/mar20/maint/50
      
      
      6bb78b95
    • unknown's avatar
      ec81cfdc
    • unknown's avatar
      Merge kboortz@bk-internal.mysql.com:/home/bk/mysql-5.0 · 23fa1ee8
      unknown authored
      into  mysql.com:/home/kent/bk/tmp/mysql-5.0-build
      
      
      23fa1ee8
    • unknown's avatar
      Bug #27231: Server crash when dumping into outfile with long FIELDS ENCLOSED BY option · d59272fb
      unknown authored
      - Problem: data separators were copied to a fixed-size buffer
        on the stack; memcpy was used, without bounds checking; a
        server crash could result if long FIELDS ENCLOSED BY, etc.,
        was given
      - Fix: write the separators directly, instead of copying to
        a buffer first (in select_export::send_data())
      
      
      sql/sql_class.cc:
        In select_export::send_data(), write data separators
        directly, instead of copying into a fixed-size memory
        buffer before writing.  This avoids a buffer overflow
        when very large separators are specified.
      d59272fb
    • unknown's avatar
      Merge qualinost.(none):/home/mtaylor/src/mysql-5.0-init · 971124a7
      unknown authored
      into  qualinost.(none):/home/mtaylor/src/mysql-5.0-maint
      
      
      971124a7
    • unknown's avatar
      echo.c: · 298cebc1
      unknown authored
        Corrected GPL to be version 2 only
      
      
      client/echo.c:
        Corrected GPL to be version 2 only
      298cebc1
    • unknown's avatar
      Merge perch.ndb.mysql.com:/home/jonas/src/50-work · 43848796
      unknown authored
      into  perch.ndb.mysql.com:/home/jonas/src/mysql-5.0-ndb
      
      
      ndb/src/kernel/blocks/dbdih/DbdihMain.cpp:
        Auto merged
      ndb/src/kernel/blocks/dblqh/DblqhMain.cpp:
        Auto merged
      ndb/src/kernel/blocks/dbtup/DbtupExecQuery.cpp:
        Auto merged
      ndb/src/kernel/blocks/dbtup/DbtupGen.cpp:
        Auto merged
      ndb/src/kernel/blocks/ndbcntr/NdbcntrMain.cpp:
        Auto merged
      ndb/src/mgmsrv/ConfigInfo.cpp:
        Auto merged
      ndb/test/ndbapi/testNodeRestart.cpp:
        Auto merged
      ndb/test/run-test/daily-basic-tests.txt:
        Auto merged
      ndb/test/src/UtilTransactions.cpp:
        Auto merged
      43848796
    • unknown's avatar
      ndb - bug#27283 (wl2325-5.0) · 26afc93a
      unknown authored
          Handle race condtition between MASTER_GCPCONF and execGCP_NODEFINISH
      
      
      ndb/src/kernel/blocks/ERROR_codes.txt:
        new error codes
      ndb/src/kernel/blocks/dbdih/DbdihMain.cpp:
        Handle race condtition between MASTER_GCPCONF and execGCP_NODEFINISH
      ndb/test/ndbapi/testNodeRestart.cpp:
        testcase
      ndb/test/run-test/daily-basic-tests.txt:
        testcase
      26afc93a
    • unknown's avatar
      ndb - bug#27291 · 54edcb18
      unknown authored
        Fix correct min-value for LockPagesInMemory
      
      
      ndb/src/mgmsrv/ConfigInfo.cpp:
        Fix correct min-value
      54edcb18
    • unknown's avatar
      Bug#23736 Pointer free error in mysqlbinlog · 6fb66342
      unknown authored
      - Mis-matched SAFEMALLOC defines caused misleading error message.
      
      
      client/mysqlbinlog.cc:
        Bug#23736 Pointer free error in mysqlbinlog
        - Re-worked the Load_log_processor so that it frees it's resources before 
        my_end is called.  This is necessary because SAFEMALLOC's _my_free calls
        pthread_mutex_lock() using THR_LOCK_malloc which is cleaned up in my_end().
      include/my_sys.h:
        Bug#23736 Pointer free error in mysqlbinlog
        - Define DYNAMIC_ARRAY beofore MY_TMPDIR
        - Add DYNAMIC_ARRAY to MY_TMP_DIR
      mysys/array.c:
        Bug#23736 Pointer free error in mysqlbinlog
        - SAFEMALLOC should not be unconditionally undef'd.
      mysys/mf_tempdir.c:
        Bug#23736 Pointer free error in mysqlbinlog
        - Use struct's DYNAMIC_ARRAY.
        - Use DYNAMIC_ARRAY:delete_dynamic function instead of my_free
      6fb66342
    • unknown's avatar
      Merge polly.local:/tmp/maint/bug23775/my50-bug23775 · da8e832a
      unknown authored
      into  polly.local:/home/kaa/src/maint/mysql-5.0-maint
      
      
      sql/slave.cc:
        Auto merged
      da8e832a
    • unknown's avatar
      Merge dfischer@bk-internal.mysql.com:/home/bk/mysql-5.0-build · e5f2e263
      unknown authored
      into  pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.0-build
      
      
      e5f2e263
    • unknown's avatar
      vio.vcproj, mysqld.vcproj, mysys.vcproj, libmysqld.vcproj, mysqldemb.vcproj: · e1d8f329
      unknown authored
        No need to set LICENSE or USE_SYMDIR from project files
      make_win_bin_dist:
        Changed location of SQL initialization files to be "share/"
      
      
      scripts/make_win_bin_dist:
        Changed location of SQL initialization files to be "share/"
      VC++Files/libmysqld/libmysqld.vcproj:
        No need to set LICENSE or USE_SYMDIR from project files
      VC++Files/mysqldemb/mysqldemb.vcproj:
        No need to set LICENSE or USE_SYMDIR from project files
      VC++Files/mysys/mysys.vcproj:
        No need to set LICENSE or USE_SYMDIR from project files
      VC++Files/sql/mysqld.vcproj:
        No need to set LICENSE or USE_SYMDIR from project files
      VC++Files/vio/vio.vcproj:
        No need to set LICENSE or USE_SYMDIR from project files
      e1d8f329
    • unknown's avatar
      Bug#25765 too many dbg heap assertions on windows · 996843e5
      unknown authored
      - SAFEMALLOC should be defined for each project in debug Windows builds.
      SAFEMALLOC was not defined for the innodb project. Debug asserts caused 
      due to mixed SAFEMALLOC defines.
      
      
      innobase/CMakeLists.txt:
        Bug#25765 too many dbg heap assertions on windows
        - Make sure that *_DEBUG defaults are not overwritten.
        - Define SAFEMALLOC and SAFE_MUTEX for debug innodb builds.
      996843e5
    • unknown's avatar
      tests fixed to work in embedded server · 089fca6b
      unknown authored
      
      mysql-test/r/delayed.result:
        result fixed
      mysql-test/r/merge.result:
        result fixed
      mysql-test/t/delayed.test:
        moved here from merge.test
      mysql-test/t/init_connect.test:
        test fixed as it created users, then stopped without deletion, what caused
        problems in consequent tests
      mysql-test/t/merge.test:
        moved to delayed.test
      mysql-test/t/mysqlbinlog-cp932.test:
        disabled in embedded server
      089fca6b