1. 20 Jan, 2005 15 commits
  2. 19 Jan, 2005 12 commits
    • unknown's avatar
      BUG#6034 - Error code 124: Wrong medium type. · 8de656bf
      unknown authored
      Version for 4.1. Committed for merge.
      If the result table is one of the select tables in INSERT SELECT,
      we must not disable the result tables indexes before selecting.
      mysql_execute_command() detects the match for other reasons and
      adds the flag OPTION_BUFFER_RESULT to the 'select_options'. 
      In this case the result is put into a temporary table first. 
      Hence, we can defer the preparation of the insert
      table until the result is to be used.
      
      
      mysql-test/r/insert_select.result:
        BUG#6034 - Error code 124:  Wrong medium type.
        The test results.
      mysql-test/t/insert_select.test:
        BUG#6034 - Error code 124:  Wrong medium type.
        The test case.
      sql/sql_select.cc:
        BUG#6034 - Error code 124:  Wrong medium type.
        With OPTION_BUFFER_RESULT in the 'select_options',
        defer the preparation of the insert table until the 
        result is to be used.
      8de656bf
    • unknown's avatar
      BUG#6034 - Error code 124: Wrong medium type. · 6d466788
      unknown authored
      Version for 4.0. Committed for merge.
      If the result table is one of the select tables in INSERT SELECT,
      we must not disable the result tables indexes before selecting.
      mysql_execute_command() detects the match for other reasons and
      adds the flag OPTION_BUFFER_RESULT to the 'select_options'. 
      In this case the result is put into a temporary table first. 
      Hence, we can defer the preparation of the insert
      table until the result is to be used.
      
      
      mysql-test/r/insert_select.result:
        BUG#6034 - Error code 124:  Wrong medium type.
        The test results.
      mysql-test/t/insert_select.test:
        BUG#6034 - Error code 124:  Wrong medium type.
        The test case.
      sql/sql_select.cc:
        BUG#6034 - Error code 124:  Wrong medium type.
        With OPTION_BUFFER_RESULT in the 'select_options',
        defer the preparation of the insert table until the 
        result is to be used. Unfortunately, this happens
        at several places.
      6d466788
    • unknown's avatar
      Merge spetrunia@bk-internal.mysql.com:/home/bk/mysql-4.1 · 9a8db185
      unknown authored
      into mysql.com:/dbdata/psergey/mysql-4.1-bug7885
      
      9a8db185
    • unknown's avatar
      Merge mysql.com:/home/jimw/my/mysql-4.1-build · 65180796
      unknown authored
      into mysql.com:/home/jimw/my/mysql-4.1-clean
      
      65180796
    • unknown's avatar
      Fix all BUILD/*max* scripts to use -DBIG_TABLES, like our real Max builds do. · 1eaf8bd4
      unknown authored
      (Simpler fix than last commit -- no need to mess with base_cxxflags.)
      
      
      BUILD/compile-amd64-max:
        use $max_cflags
      BUILD/compile-pentium-debug-max:
        use $max_cflags
      BUILD/compile-pentium-debug-max-no-embedded:
        use $max_cflags
      BUILD/compile-pentium-max:
        use $max_cflags
      BUILD/compile-pentium-valgrind-max:
        use $max_cflags
      BUILD/compile-ppc-debug-max:
        use $max_cflags
      BUILD/compile-ppc-max:
        use $max_cflags
      BUILD/compile-amd64-debug-max:
        use $max_cflags, remove unnecessary base_cxxflags stuff
      1eaf8bd4
    • unknown's avatar
      ndb - make sure scan recevier pointers are aligned · f9fc7d91
      unknown authored
      
      ndb/src/ndbapi/NdbScanOperation.cpp:
        align pointers
      f9fc7d91
    • unknown's avatar
      Merge lgrimmer@bk-internal.mysql.com:/home/bk/mysql-4.1 · d361a33d
      unknown authored
      into mysql.com:/space/my/mysql-4.1
      
      d361a33d
    • unknown's avatar
      Merge joreland@bk-internal.mysql.com:/home/bk/mysql-4.1 · a72c6ea1
      unknown authored
      into mysql.com:/home/jonas/src/mysql-4.1
      
      a72c6ea1
    • unknown's avatar
      Merge tulin@bk-internal.mysql.com:/home/bk/mysql-4.1 · b26208bf
      unknown authored
      into poseidon.ndb.mysql.com:/home/tomas/mysql-4.1
      
      b26208bf
    • unknown's avatar
    • unknown's avatar
      bug#7777 - ndb compile on qnx · 44bac034
      unknown authored
        remove usage of compiler supplied <new> and instead
        impl. own inlined placement new
      
      
      ndb/include/kernel/AttributeHeader.hpp:
        remove usage <new>
      ndb/include/ndb_global.h.in:
        remove usage <new>
        instead impl. own
      ndb/src/kernel/blocks/backup/BackupInit.cpp:
        remove usage <new>
      ndb/src/kernel/blocks/cmvmi/Cmvmi.cpp:
        remove usage <new>
      ndb/src/kernel/blocks/dbdih/DbdihInit.cpp:
        remove usage <new>
      ndb/src/kernel/blocks/dblqh/DblqhInit.cpp:
        remove usage <new>
      ndb/src/kernel/blocks/dbtc/DbtcInit.cpp:
        remove usage <new>
      ndb/src/kernel/blocks/dbtup/DbtupGen.cpp:
        remove usage <new>
      ndb/src/kernel/blocks/dbtux/Dbtux.hpp:
        remove usage <new>
      ndb/src/kernel/blocks/grep/GrepInit.cpp:
        remove usage <new>
      ndb/src/kernel/blocks/suma/SumaInit.cpp:
        remove usage <new>
      ndb/src/kernel/vm/Emulator.cpp:
        remove usage <new>
      ndb/src/kernel/vm/SimulatedBlock.hpp:
        remove usage <new>
      ndb/src/mgmapi/mgmapi_configuration.cpp:
        remove usage <new>
      44bac034
    • unknown's avatar
      bug#7693 - ndb · 523bed35
      unknown authored
        when using shm transporter, set sigmask on each thread using pthread_sigmask
      
      
      configure.in:
        Add more functions needed for SHM
      ndb/src/common/portlib/NdbThread.c:
        1) Create thread wrapper function
        2) block SIGUSR1 #ifdef NDB_SHM_TRANSPORTER
      ndb/src/common/transporter/TransporterRegistry.cpp:
        (un)block SIGUSR1 #ifdef NDB_SHM_TRANSPORTER
      sql/ha_ndbcluster.cc:
        cast pointer to UintPtr before printout
      523bed35
  3. 18 Jan, 2005 13 commits