1. 10 May, 2004 2 commits
    • unknown's avatar
      Updated ndb_basic · 60df153b
      unknown authored
      
      mysql-test/r/ndb_basic.result:
        Updated ndb_basic for better coverage
      mysql-test/t/ndb_basic.test:
        Updated ndb_basic for better coverage
      60df153b
    • unknown's avatar
      WL# 1728 Handler: use scanReadExclusive for scan update and delete · ecff23f3
      unknown authored
      
      
      sql/ha_ndbcluster.cc:
        Modified next_result to process fetched records cached in NdbApi before asking NDB for more. 
        It should also NoCommit any pending operations before contacting NDB again.
        Added utility function define_read_attrs to set the fields that should be read.
      sql/ha_ndbcluster.h:
        Add function define_read_attrs, used to set the fields to read
        Add get_nd_lock_type funciton ,to convert MySQL lock type to NDB lock type
        Always compile filtered scan function even if it's not used yet.
        Add variable ops_pending to keep track of "pending" update/delete operations.
      ecff23f3
  2. 05 May, 2004 7 commits
    • unknown's avatar
      BUG# 3658 ALTER TABLE corrupts table · 5c4c0ef2
      unknown authored
      Added  test file for ALTER TABLE, engine = ndbcluster
      
      
      sql/ha_ndbcluster.cc:
        Add code to retriev all fields if HA_EXTRA_RETRIEVE_ALL_COLS are set.
      sql/ha_ndbcluster.h:
        Add var for retreiving all fields
      sql/sql_table.cc:
        Send HA_EXTRA_RETRIEVE_ALL_COLS to handler in copy_data_between_tables
      5c4c0ef2
    • unknown's avatar
      Merge msvensson@bk-internal.mysql.com:/home/bk/mysql-4.1 · fb8870e4
      unknown authored
      into neptunus.(none):/home/magnus/mysql-4.1
      
      fb8870e4
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1 · f347b374
      unknown authored
      into mysql.com:/home/my/mysql-4.1
      
      
      mysql-test/r/subselect.result:
        Auto merged
      sql/item.cc:
        Auto merged
      sql/sql_prepare.cc:
        Auto merged
      sql/sql_select.cc:
        Auto merged
      sql/sql_update.cc:
        Auto merged
      tests/client_test.c:
        Auto merged
      f347b374
    • unknown's avatar
      Delete Items created during Prepared Stat (memory leak bug) (Bug #3451) · eee63d2b
      unknown authored
      
      sql/sql_parse.cc:
        Delete Items created during Prepared Stat (memory leak bug)
      sql/sql_prepare.cc:
        Delete Items created during Prepared Stat (memory leak bug)
      eee63d2b
    • unknown's avatar
      Fixed crashing bug with alter table when table was in use (Bug #3643) · bc596045
      unknown authored
      We didn't use 'only index' for tables of type 'const'. (Bug #3497)
      
      
      mysql-test/r/func_str.result:
        New testfin
      mysql-test/r/key.result:
        New test
      mysql-test/r/key_primary.result:
        Update after "We didn't use 'only index' for tables of type 'const'" fix.
      mysql-test/r/null_key.result:
        Update after "We didn't use 'only index' for tables of type 'const'" fix.
      mysql-test/r/subselect.result:
        Update after "We didn't use 'only index' for tables of type 'const'" fix.
      mysql-test/t/func_str.test:
        Updated bug texts
        Added test for conversion of long string value to integer (Bug #3472)
      mysql-test/t/key.test:
        Test of key read with primary key (Bug #3497)
      sql/item.cc:
        Added assert
      sql/sql_base.cc:
        Fixed crashing bug with alter table when table was in use (Bug #3643)
      sql/sql_load.cc:
        Indentation fixes
      sql/sql_select.cc:
        We didn't use 'only index' for tables of type 'const'. (Bug #3497)
      bc596045
    • unknown's avatar
      Merge msvensson@bk-internal.mysql.com:/home/bk/mysql-4.1 · 6270c116
      unknown authored
      into neptunus.(none):/home/magnus/mysql-4.1
      
      
      mysql-test/mysql-test-run.sh:
        Auto merged
      6270c116
    • unknown's avatar
      Merge fixes · e146d99c
      unknown authored
      
      sql/ha_ndbcluster.cc:
        Updated use of extra ordered index after merge
        Removed TODO note in swedish
      e146d99c
  3. 04 May, 2004 14 commits
    • unknown's avatar
      Merge sinisa@bk-internal.mysql.com:/home/bk/mysql-4.1 · c5d5f1fa
      unknown authored
      into sinisa.nasamreza.org:/mnt/work/mysql-4.1
      
      
      sql/sql_union.cc:
        Auto merged
      c5d5f1fa
    • unknown's avatar
      Fix for a multi table updates when one of the tables is not updated · 21c79c24
      unknown authored
      but used in a nested query.
      
      21c79c24
    • unknown's avatar
      After merge fix. · 88c261c2
      unknown authored
      Now test_bug1664() uses new statement checking macros.
      
      
      tests/client_test.c:
        Now test_bug1664() uses new statement checking macros.
      88c261c2
    • unknown's avatar
      Manual merge of bugfix for Bug #1664. · c2f86fe9
      unknown authored
      
      sql/sql_prepare.cc:
        Auto merged
      tests/client_test.c:
        Manual merge.
      c2f86fe9
    • unknown's avatar
      Fix for remaining issues described in Bug #1664 · 5b19a9d0
      unknown authored
      "mysql_send_long_data() API call is completely broken".
      
      Now we are resetting some members (long_data_supplied/null_value...) of Item_param to its 
      initial state after each execution of prepared statement. We also manipulating 
      Item_param::maybe_null/null_value only via Item_param::set_* setters which makes code a bit 
      more robust.
      
      
      sql/item.cc:
        Now we are assuming that Item_param may be NULL until we know this fact exactly.
        Added non-empty implementation of Item_param::reset() method which should be used
        for restoring Item_param state after each statment execution. (We need to clear 
        long_data_supplied flag, we also clear some other Item_param members here since it
        makes code simpler.)
      sql/item.h:
        Now Item_param::reset() method really does something.
      sql/sql_prepare.cc:
        Now we are calling Item_param::reset() for each parameter after execution for resetting Item_param
        to initial state. So we no longer don't need Prepared_statement::long_data_flag. We also 
        set Item_param::null_value/maybe_null value in Item_param::set_* and reset() methods 
        instead of doing it explicitly in insert_params_* functions (this by the way lowers 
        probability that we will forget to update one of such functions).
      tests/client_test.c:
        Added test for Bug#1664 "mysql_send_long_data() API call is broken".
      5b19a9d0
    • unknown's avatar
      union.result: · 318b07e8
      unknown authored
        fixing typo
      union.test:
        fixing type
      
      
      mysql-test/t/union.test:
        fixing type
      mysql-test/r/union.result:
        fixing typo
      318b07e8
    • unknown's avatar
      Merge sanja.is.com.ua:/home/bell/mysql/bk/mysql-4.1 · 8d3431d4
      unknown authored
      into sanja.is.com.ua:/home/bell/mysql/bk/work-prep-4.1
      
      8d3431d4
    • unknown's avatar
      repetable test replaced with inline function · a237767e
      unknown authored
      a237767e
    • unknown's avatar
      Merge sanja.is.com.ua:/home/bell/mysql/bk/mysql-4.1 · b0fa6f2a
      unknown authored
      into sanja.is.com.ua:/home/bell/mysql/bk/work-sub-4.1
      
      b0fa6f2a
    • unknown's avatar
      Fix to handle unsigned data in prepared statements (Bug #3447) · 29c07902
      unknown authored
      Fixed security problem that password was temporarly reset when someone changed GRANT for a user. (Bug #3404)
      Fixed problem with PROCEDURE analyse() and impossible WHERE (Bug #2238)
      Don't auto-repair tables in mysqlcheck if table type doesn't support 'check' command.
      
      
      Docs/mysqld_error.txt:
        Updated error values
      client/mysqlcheck.c:
        Don't cause auto-repair on 'note' (Tables that doesn't support 'check')
      libmysql/libmysql.c:
        Fix to handle unsigned data in prepared statements (Bug #3447)
      mysql-test/r/analyse.result:
        Test of analyze + impossible where (Bug #2238)
      mysql-test/r/bdb.result:
        Update results
      mysql-test/r/ctype_ujis.result:
        Update results
      mysql-test/r/isam.result:
        Update results
      mysql-test/r/repair.result:
        Update results
      mysql-test/t/analyse.test:
        Test of analyze + impossible where (Bug #2238)
      mysql-test/t/ctype_ujis.test:
        Added test for LIKE (Bug #3438)
      sql/sql_acl.cc:
        Fixed security problem that password was temporarly reset when someone changed GRANT for a user. (Bug #3404)
      sql/sql_select.cc:
        Fixed problem with PROCEDURE analyse() and impossible WHERE (Bug #2238)
      sql/sql_table.cc:
        Changed 'error' to 'note' when table doesn't support admin command.
      sql/sql_update.cc:
        Indentaion cleanup
      tests/client_test.c:
        Added test for handling unsigned/signed strings with prepared statements
      29c07902
    • unknown's avatar
      union.result, union.test: · f9c70715
      unknown authored
        a small fix for the test case
      
      
      mysql-test/t/union.test:
        a small fix for the test case
      mysql-test/r/union.result:
        a small fix for the test case
      f9c70715
    • unknown's avatar
      yangf - yet another ndb gcc/g++ fix · 0e0e217d
      unknown authored
      Hopefully last one
      
      
      
      ndb/config/Defs.LINUX.x86.GCC.mk:
        Only use __cxa_pure_virtual for binaries / so's
      ndb/src/common/util/new.cpp:
        Remove __cxa_pure_virtual from here
      0e0e217d
    • unknown's avatar
      Merge joreland@bk-internal.mysql.com:/home/bk/mysql-4.1 · 3bfcf643
      unknown authored
      into mysql.com:/home/jonas/src/mysql-4.1
      
      3bfcf643
    • unknown's avatar
      Merge NDB patches into 4.1-clone, below is list of changesets · e2eb4033
      unknown authored
      # --------------------------------------------
      # 04/04/13      joreland@mysql.com      1.1858.1.1
      # Removal of NDBT_Table
      # --------------------------------------------
      # 04/04/13      joreland@mysql.com      1.1858.1.2
      # Removal of NDBT_Table
      # --------------------------------------------
      # 04/04/13      joreland@mysql.com      1.1858.1.3
      # Fix for crashing AT
      # --------------------------------------------
      # 04/04/13      joreland@mysql.com      1.1858.1.4
      # Bug fixes in testIndex
      # --------------------------------------------
      # 04/04/13      joreland@mysql.com      1.1866.1.5
      # Merge joreland@bk-internal.mysql.com:/home/bk/mysql-4.1-ndb
      # into mysql.com:/home/jonas/src/tmp
      # --------------------------------------------
      # 04/04/14      joreland@mysql.com      1.1858.1.5
      # Fix for takeover when accessing indexes.
      # --------------------------------------------
      # 04/04/14      joreland@mysql.com      1.1866.1.6
      # Merge joreland@bk-internal.mysql.com:/home/bk/mysql-4.1-ndb
      # into mysql.com:/home/jonas/src/tmp
      # --------------------------------------------
      # 04/04/14      joreland@mysql.com      1.1858.2.1
      # Fixed error handling of fire_trigger_ord + lqhkeyref w.r.t indexes
      # --------------------------------------------
      # 04/04/14      joreland@mysql.com      1.1858.2.2
      # Simple retry mechanism in UTIL
      # Helps testIndex -n BuildDuring _a lot_
      # --------------------------------------------
      # 04/04/14      joreland@mysql.com      1.1858.2.3
      # Misc fixes to test prg.
      # --------------------------------------------
      # 04/04/14      joreland@mysql.com      1.1858.2.4
      # Allow more retires on application errors
      # --------------------------------------------
      # 04/04/14      joreland@mysql.com      1.1858.2.5
      # Pass no of rows fetched in SUB_SYNC_CONTINUE_REQ
      # --------------------------------------------
      # 04/04/14      joreland@mysql.com      1.1869
      # wl1714
      # Improve parallellism
      # --------------------------------------------
      # 04/04/14      joreland@mysql.com      1.1870
      # Merge joreland@bk-internal.mysql.com:/home/bk/mysql-4.1-ndb
      # into mysql.com:/home/jonas/src/wl1714
      # --------------------------------------------
      # 04/04/14      joreland@mysql.com      1.1866.1.7
      # Merge
      # --------------------------------------------
      # 04/04/14      joreland@mysql.com      1.1871
      # Merge mysql.com:/home/jonas/src/wl1714
      # into mysql.com:/home/jonas/src/mysql-4.1-ndb
      # --------------------------------------------
      # 04/04/14      joreland@mysql.com      1.1872
      # Fix for testScan -n ScanReadError5030
      # --------------------------------------------
      # 04/04/14      joreland@mysql.com      1.1873
      # fix testDict -n FragmentType*
      # --------------------------------------------
      # 04/04/14      johan@stingray.(none)   1.1866.2.1
      # small fixes
      # --------------------------------------------
      # 04/04/14      johan@stingray.(none)   1.1874
      # Merge jandersson@bk-internal.mysql.com:/home/bk/mysql-4.1-ndb
      # into stingray.(none):/space/bk/rep/mysql-4.1-ndb
      # --------------------------------------------
      # 04/04/14      johan@stingray.(none)   1.1875
      # handle rep node as an api node
      # --------------------------------------------
      # 04/04/14      pekka@mysql.com 1.1873.1.1
      # Fix for NDBT_Table removal
      # --------------------------------------------
      # 04/04/15      joreland@mysql.com      1.1873.1.2
      # Uninitialized var.
      # --------------------------------------------
      # 04/04/15      johan@stingray.(none)   1.1876
      # Merge jandersson@bk-internal.mysql.com:/home/bk/mysql-4.1-ndb
      # into stingray.(none):/space/bk/rep/mysql-4.1-ndb
      # --------------------------------------------
      # 04/04/15      joreland@mysql.com      1.1873.1.3
      # Write pid before changing user
      # (as runas user probably doesn't have permissions on pid-dir)
      # --------------------------------------------
      # --------------------------------------------
      # 04/04/15      ndb@mc03.ndb.mysql.com  1.1862.1.3
      # Fix printout of varchars
      # --------------------------------------------
      # 04/04/15      ndb@mc03.ndb.mysql.com  1.1877
      # Merge joreland@bk-internal.mysql.com:/home/bk/mysql-4.1-ndb
      # into mc03.ndb.mysql.com:/space/ndb/tmp
      # --------------------------------------------
      # 04/04/15      ndb@mc03.ndb.mysql.com  1.1862.1.4
      # Hmm.. don't print attr as many times as length of array
      # --------------------------------------------
      # 04/04/15      ndb@mc03.ndb.mysql.com  1.1878
      # Merge mc03.ndb.mysql.com:/space/ndb/mysql-4.1-ndb
      # into mc03.ndb.mysql.com:/space/ndb/tmp
      # --------------------------------------------
      # 04/04/15      joreland@mysql.com      1.1876.1.1
      # Merge joreland@bk-internal.mysql.com:/home/bk/mysql-4.1-ndb
      # into mysql.com:/home/jonas/src/mysql-4.1-ndb
      # --------------------------------------------
      # 04/04/15      joreland@mysql.com      1.1877.1.1
      # Merge joreland@bk-internal.mysql.com:/home/bk/mysql-4.1-ndb
      # into mysql.com:/home/jonas/src/mysql-4.1-ndb
      # --------------------------------------------
      # 04/04/15      ndb@mc03.ndb.mysql.com  1.1879
      # Merge joreland@bk-internal.mysql.com:/home/bk/mysql-4.1-ndb
      # into mc03.ndb.mysql.com:/space/ndb/tmp
      # --------------------------------------------
      # 04/04/17      joreland@mysql.com      1.1880
      # LCP bug when restarting ops take's longer than DIH sending a new lcp ord
      # Solution:
      # Send LCP_FRAG_REP after restarting all ops
      # --------------------------------------------
      # 04/04/18      joreland@mysql.com      1.1881
      # Missspelled ERROR_INSERT
      # --------------------------------------------
      # 04/04/18      joreland@mysql.com      1.1882
      # Added possibility to log only distributed signals
      # --------------------------------------------
      # 04/04/22      joreland@mysql.com      1.1883
      # Removed dependancy to libstdc++
      # * pure virtual functions "__cxa_pure_virtual" is defined in libstd++ ->
      #   remove all pure virtual functions
      # --------------------------------------------
      # 04/04/23      joreland@mysql.com      1.1884
      # Various minor bug fixes for problems found while compiling
      # with icc
      # --------------------------------------------
      # --------------------------------------------
      # 04/04/25      joreland@mysql.com      1.1885
      # Removed debug code (joreland:1.1875)
      # --------------------------------------------
      # 04/04/26      ejonore@mc03.ndb.mysql.com      1.1862.1.5
      # Lock pages in memory _after_ daemon-mode (exec/fork)
      # --------------------------------------------
      # 04/04/27      ejonore@mc03.ndb.mysql.com      1.1862.1.6
      # 1) Trap abort()
      # 2) StopStart/StopAborted events
      # 3) warning if memlock fails
      # 4) use g_logger more often (instead of ndbout)
      # 
      # --------------------------------------------
      # 04/04/27      joreland@mysql.com      1.1886
      # bug fix for a bug in wl1714 + software upgrade
      # --------------------------------------------
      # 04/04/27      joreland@mysql.com      1.1887
      # Cset exclude: joreland@mysql.com|ChangeSet|20040422160720|05374
      # --------------------------------------------
      # 04/04/27      joreland@mysql.com      1.1888
      # removed libstc++ second try...
      # --------------------------------------------
      # 04/04/28      ejonore@mc03.ndb.mysql.com      1.1862.1.7
      # 1) Don't lock FUTURE pages but only current
      # 2) Do this when SIZEALT has completed
      # --------------------------------------------
      # 04/04/30      joreland@mysql.com      1.1889
      # Merge jonas@orca:/home/ndb/releases/mysql-4.1-ndb-3.4.x
      # into mysql.com:/home/jonas/src/mysql-4.1-ndb
      # --------------------------------------------
      # 04/05/03      ndb@mc03.ndb.mysql.com  1.1862.1.8
      # Version update
      # --------------------------------------------
      # 04/05/03      joreland@mysql.com      1.1862.3.1
      # Changed restart behavior.
      # Use "angel" process which monitor "real" process
      # --------------------------------------------
      # 04/05/03      joreland@mysql.com      1.1862.1.9
      # Merge jonas@orca:/home/ndb/releases/mysql-4.1-ndb-3.4.x
      # into mysql.com:/home/jonas/src/mysql-4.1-ndb-3.4.x
      # --------------------------------------------
      # 04/05/03      joreland@mysql.com      1.1890
      # Merge B2 fixes
      # --------------------------------------------
      # --------------------------------------------
      # 04/05/03      joreland@mysql.com      1.1862.1.10
      # Better handling of children terminations
      # --------------------------------------------
      # 04/05/03      joreland@mysql.com      1.1862.1.11
      # Fixes for angel-restarting
      # --------------------------------------------
      # 04/05/03      joreland@mysql.com      1.1891
      # Merge mysql.com:/home/jonas/src/mysql-4.1-ndb-3.4.x
      # into mysql.com:/home/jonas/src/mysql-4.1-ndb
      # --------------------------------------------
      #
      
      
      ndb/config/Defs.LINUX.x86.GCC.mk:
        Merge ndb fixes
      ndb/examples/ndbapi_async_example/Makefile:
        Merge ndb fixes
      ndb/examples/ndbapi_async_example/ndbapi_async.cpp:
        Merge ndb fixes
      ndb/examples/ndbapi_scan_example/Makefile:
        Merge ndb fixes
      ndb/include/debugger/SignalLoggerManager.hpp:
        Merge ndb fixes
      ndb/include/kernel/signaldata/ScanFrag.hpp:
        Merge ndb fixes
      ndb/include/ndb_version.h:
        Merge ndb fixes
      ndb/include/ndbapi/NdbScanOperation.hpp:
        Merge ndb fixes
      ndb/include/util/SocketServer.hpp:
        Merge ndb fixes
      ndb/src/common/debugger/SignalLoggerManager.cpp:
        Merge ndb fixes
      ndb/src/common/logger/ConsoleLogHandler.cpp:
        Merge ndb fixes
      ndb/src/common/portlib/unix/NdbMem.c:
        Merge ndb fixes
      ndb/src/common/util/Makefile:
        Merge ndb fixes
      ndb/src/common/util/version.c:
        Merge ndb fixes
      ndb/src/cw/cpcd/Process.cpp:
        Merge ndb fixes
      ndb/src/kernel/blocks/ERROR_codes.txt:
        Merge ndb fixes
      ndb/src/kernel/blocks/backup/restore/Restore.cpp:
        Merge ndb fixes
      ndb/src/kernel/blocks/backup/restore/Restore.hpp:
        Merge ndb fixes
      ndb/src/kernel/blocks/backup/restore/main.cpp:
        Merge ndb fixes
      ndb/src/kernel/blocks/cmvmi/Cmvmi.cpp:
        Merge ndb fixes
      ndb/src/kernel/blocks/dbdict/Dbdict.cpp:
        Merge ndb fixes
      ndb/src/kernel/blocks/dblqh/Dblqh.hpp:
        Merge ndb fixes
      ndb/src/kernel/blocks/dblqh/DblqhInit.cpp:
        Merge ndb fixes
      ndb/src/kernel/blocks/dblqh/DblqhMain.cpp:
        Merge ndb fixes
      ndb/src/kernel/blocks/dbtc/Dbtc.hpp:
        Merge ndb fixes
      ndb/src/kernel/blocks/dbtc/DbtcInit.cpp:
        Merge ndb fixes
      ndb/src/kernel/blocks/dbtc/DbtcMain.cpp:
        Merge ndb fixes
      ndb/src/kernel/blocks/dbutil/DbUtil.cpp:
        Merge ndb fixes
      ndb/src/kernel/blocks/dbutil/DbUtil.hpp:
        Merge ndb fixes
      ndb/src/kernel/blocks/ndbcntr/NdbcntrMain.cpp:
        Merge ndb fixes
      ndb/src/kernel/blocks/ndbfs/Filename.cpp:
        Merge ndb fixes
      ndb/src/kernel/blocks/suma/Suma.cpp:
        Merge ndb fixes
      ndb/src/kernel/error/Error.hpp:
        Merge ndb fixes
      ndb/src/kernel/ndb-main/Main.cpp:
        Merge ndb fixes
      ndb/src/kernel/vm/Configuration.cpp:
        Merge ndb fixes
      ndb/src/kernel/vm/Configuration.hpp:
        Merge ndb fixes
      ndb/src/kernel/vm/DLFifoList.hpp:
        Merge ndb fixes
      ndb/src/kernel/vm/Emulator.cpp:
        Merge ndb fixes
      ndb/src/kernel/vm/SignalCounter.hpp:
        Merge ndb fixes
      ndb/src/kernel/vm/SimulatedBlock.cpp:
        Merge ndb fixes
      ndb/src/mgmsrv/MgmtSrvr.cpp:
        Merge ndb fixes
      ndb/src/mgmsrv/NodeLogLevel.cpp:
        Merge ndb fixes
      ndb/src/ndbapi/ClusterMgr.cpp:
        Merge ndb fixes
      ndb/src/ndbapi/Ndberror.cpp:
        Merge ndb fixes
      ndb/src/rep/rep_version.hpp:
        Merge ndb fixes
      ndb/test/ndbapi/testDict/testDict.cpp:
        Merge ndb fixes
      ndb/test/ndbapi/testIndex/testIndex.cpp:
        Merge ndb fixes
      ndb/test/ndbapi/testMgm/testMgm.cpp:
        Merge ndb fixes
      ndb/test/ndbapi/testScan/testScan.cpp:
        Merge ndb fixes
      ndb/test/src/HugoTransactions.cpp:
        Merge ndb fixes
      ndb/test/src/NDBT_Tables.cpp:
        Merge ndb fixes
      ndb/test/src/NDBT_Test.cpp:
        Merge ndb fixes
      ndb/test/src/UtilTransactions.cpp:
        Merge ndb fixes
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      e2eb4033
  4. 03 May, 2004 9 commits
    • unknown's avatar
      trying to remove Windows compiler warnings (Miguel, could you please check if it's better now?) · 29d9bf35
      unknown authored
      
      innobase/eval/eval0eval.c:
        explicit cast
      sql/ha_innodb.cc:
        removed unused variable
      29d9bf35
    • unknown's avatar
      Merge bk-internal:/home/bk/mysql-4.1/ · 7a241510
      unknown authored
      into serg.mylan:/usr/home/serg/Abk/mysql-4.1
      
      7a241510
    • unknown's avatar
      Fix for a bug involving UNION's and SET SQL_SELECT_LIMIT · 9b42db31
      unknown authored
      
      mysql-test/r/union.result:
        Results for a test case for bug involving UNION's and 
        SET SQL_SELECT_LIMIT
      mysql-test/t/union.test:
        Test case for bug involving UNION's and 
        SET SQL_SELECT_LIMIT
      sql/sql_union.cc:
        Patch  for a bug involving UNION's and SET SQL_SELECT_LIMIT
      9b42db31
    • unknown's avatar
      per special request from Ingo :) · eee91004
      unknown authored
      eee91004
    • unknown's avatar
      Merge mysql.com:/home/mydev/mysql-4.1 · f016e30e
      unknown authored
      into mysql.com:/home/mydev/mysql-4.1-wl1700-diff
      
      
      sql/mysqld.cc:
        Auto merged
      f016e30e
    • unknown's avatar
      WL#1700 - Properly count key_blocks_used and key_blocks_current. · 14bdccb2
      unknown authored
      Introduced a new free blocks list. Free blocks are now re-used before
      new blocks are allocated from the pool. There is a new status variable 
      which can be queried by "show status like key_blocks_unused".
      
      
      include/keycache.h:
        WL#1700 - Properly count key_blocks_used and key_blocks_current.
        free_block_list is the new free blocks list. It is implemented like a stack (LIFO).
        blocks_unused holds the number of never used blocks plus the number of blocks in the free list.
        Removed the variable global_blocks_used, as it was always the same as blocks_used.
      mysql-test/r/key_cache.result:
        WL#1700 - Properly count key_blocks_used and key_blocks_current.
        Inserted some commands which show how key_blocks_used and key_blocks_unused work.
      mysql-test/t/key_cache.test:
        WL#1700 - Properly count key_blocks_used and key_blocks_current.
        Inserted some commands which show how key_blocks_used and key_blocks_unused work.
      mysys/mf_keycache.c:
        WL#1700 - Properly count key_blocks_used and key_blocks_current.
        Introduced a new free blocks list. The introductory comment says it all (I hope).
        Removed the variable global_blocks_used, as it was always the same as blocks_used.
      sql/mysqld.cc:
        WL#1700 - Properly count key_blocks_used and key_blocks_current.
        The blocks_unused count can be queried by "show status like key_blocks_unused".
        Removed the variable global_blocks_used, as it was always the same as blocks_used.
        Introduced SHOW_KEY_CACHE_CONST_LONG for status variables that
        must not be modified (i.e. flushed to zero).
      sql/sql_show.cc:
        WL#1700 - Properly count key_blocks_used and key_blocks_current.
        Introduced SHOW_KEY_CACHE_CONST_LONG for status variables that
        must not be modified (i.e. flushed to zero).
      sql/sql_test.cc:
        WL#1700 - Properly count key_blocks_used and key_blocks_current.
        Removed the variable global_blocks_used, as it was always the same as blocks_used.
      sql/structs.h:
        WL#1700 - Properly count key_blocks_used and key_blocks_current.
        Introduced SHOW_KEY_CACHE_CONST_LONG for status variables that
        must not be modified (i.e. flushed to zero).
      14bdccb2
    • unknown's avatar
      return table list of fake_select in empty state to prevent using TABLE_LIST... · a97452e1
      unknown authored
      return table list of fake_select in empty state to prevent using TABLE_LIST allocated on stack in next execution of PS (Bug #3577)
      
      
      sql/sql_union.cc:
        return table list of fake_select in empty state to prevent using TABLE_LIST allocated on stack in next execution of PS
      tests/client_test.c:
        test of UNIONS with PS
      a97452e1
    • unknown's avatar
      - enabled compiling with NDB cluster in compile-pentium-debug-max · 0fcb508b
      unknown authored
      
      BUILD/compile-pentium-debug-max:
         - enable compiling with NDB cluster
      0fcb508b
    • unknown's avatar
      mysql-test-run: -start-from added, cleanup · 19bf8a7e
      unknown authored
      
      mysql-test/mysql-test-run.sh:
        -start-from added
        cleanup
      19bf8a7e
  5. 02 May, 2004 1 commit
    • unknown's avatar
      fixed zero result case for group functions in subquery (Bug #3505) · a03cdfdb
      unknown authored
      fixed LIMIT 0 for zero rows optimisation
      
      
      mysql-test/r/subselect.result:
        test case for bugreport
      mysql-test/t/subselect.test:
        test case for bugreport
      sql/sql_select.cc:
        cleanup sum function on reinit
        take in account LIMIT if zero result optimisation case
        do not forgot sum function in zero result case for subqueries
      a03cdfdb
  6. 01 May, 2004 3 commits
  7. 30 Apr, 2004 4 commits