An error occurred fetching the project authors.
  1. 09 May, 2005 1 commit
  2. 07 May, 2005 1 commit
    • unknown's avatar
      wl2445.patch · bf7c15d0
      unknown authored
      sql/ha_ndbcluster.cc:
        Import patch wl2445.patch
      sql/handler.h:
        Import patch wl2445.patch
      sql/sql_delete.cc:
        Import patch wl2445.patch
      sql/sql_update.cc:
        Import patch wl2445.patch
      bf7c15d0
  3. 29 Apr, 2005 1 commit
  4. 28 Apr, 2005 2 commits
  5. 27 Apr, 2005 2 commits
    • unknown's avatar
    • unknown's avatar
      BUG#9714 libsupc++ problem · 072fa90d
      unknown authored
       - Remove linking of libsupc++
       - Move all local static variables to filescope
      
      
      configure.in:
        Remove linking with libsupc++
      sql/examples/ha_archive.cc:
        Move local static variables to file scope
      sql/examples/ha_example.cc:
        Move local static variables to file scope
      sql/examples/ha_tina.cc:
        Move local static variables to file scope
      sql/ha_berkeley.cc:
        Move local static variables to file scope
      sql/ha_blackhole.cc:
        Move local static variables to file scope
      sql/ha_federated.cc:
        Move local static variables to file scope
      sql/ha_heap.cc:
        Move local static variables to file scope
      sql/ha_innodb.cc:
        Move local static variables to file scope
      sql/ha_myisam.cc:
        Move local static variables to file scope
      sql/ha_myisammrg.cc:
        Move local static variables to file scope
      sql/ha_ndbcluster.cc:
        Move local static variables to file scope
      sql/item.cc:
        Move local static instance variables to file scope
      sql/item_sum.cc:
        Move local static variables to file scope
      072fa90d
  6. 25 Apr, 2005 3 commits
  7. 22 Apr, 2005 1 commit
  8. 21 Apr, 2005 2 commits
  9. 19 Apr, 2005 1 commit
  10. 15 Apr, 2005 2 commits
  11. 13 Apr, 2005 2 commits
  12. 11 Apr, 2005 1 commit
    • unknown's avatar
      ndb - csc#4847 - manual merge 4.1->5.0 · 6bed3ee9
      unknown authored
      ndb/include/ndbapi/NdbScanOperation.hpp:
        release scan op early to save memory
      ndb/src/ndbapi/NdbScanOperation.cpp:
        release scan op early to save memory
      ndb/src/ndbapi/NdbTransaction.cpp:
        release scan op early to save memory
      ndb/src/ndbapi/Ndblist.cpp:
        release scan op early to save memory
      sql/ha_ndbcluster.cc:
        release scan op early to save memory
      6bed3ee9
  13. 08 Apr, 2005 2 commits
  14. 07 Apr, 2005 3 commits
  15. 06 Apr, 2005 1 commit
  16. 04 Apr, 2005 1 commit
    • unknown's avatar
      BUG#6762 ALTER TABLE gives weird results and error message · f65e9210
      unknown authored
        - Better error message when table definition has changed
      
      
      mysql-test/r/ndb_alter_table.result:
        New error message and code when table definition has changed.
      mysql-test/r/ndb_multi.result:
        Safety, drop tables in second server as well
      mysql-test/t/ndb_alter_table.test:
        New error message and code when table definition has changed.
      mysql-test/t/ndb_multi.test:
        Safety, drop tables in second server as well
      sql/ha_ndbcluster.cc:
        When error 284 is returned from NDB a check must be made to see what the error really means.
         - if table does not exists any more, return 709 -> No such table exists
         - if table still exists, table has most likely been altered and table id and version has 
           changed, print  hardcoded  errormessage indicating that transaction should retried
          (this error message should be translated to a langauge dependent error message in 5.0)
          
        Remove mapping from 284 to HA_ERR_NO_SUCH_TABLE
      f65e9210
  17. 01 Apr, 2005 1 commit
  18. 31 Mar, 2005 1 commit
    • unknown's avatar
      BUG#8585 ndb_cache2 · df7f4cc5
      unknown authored
       - When deleting from a cursor the m_rows_changed variable was not properly incremented to indicate that m_share->commit_count should be cleared at end of trans.
        
      
      
      sql/ha_ndbcluster.cc:
        Moved increment of m_rows_changed to higher up in the function.
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      df7f4cc5
  19. 22 Mar, 2005 2 commits
  20. 21 Mar, 2005 1 commit
  21. 15 Mar, 2005 1 commit
    • unknown's avatar
      WL#2269 Enable query cache for NDB part 2 · aa5dba42
      unknown authored
      -This is mostly fixes for correct behaviour when using query cache + transactions + the thread that
      fetches commit count from NDB at regular intervals. The major fix is to add a
      list in thd_ndb, that keeps a list of NDB_SHARE's that were modified by
      transaction and then "clearing" them in ndbcluster_commit.
      
      
      mysql-test/r/ndb_cache2.result:
        Updated test cases for the ndb_util thread, more simultaneous tables and more tesst
      mysql-test/t/ndb_cache2.test:
        Updated test cases for the ndb_util thread, more simultaneous tables and more advanced tesst
      sql/ha_ndbcluster.cc:
        Add table changed during transaction to list of changed tables in Thd_ndb, this list is then used in ndbcluster_commit to invalidate the cached commit_count in share
        Fix so that ndb_util_thread uses milliseconds "sleeps"
        Changed so that ndb_commit_count uses the commit_count from share if available
      sql/ha_ndbcluster.h:
        Add commit_count_lock to NBD_SHARE, use for detecting simultaneous attempts to update commit_count
        Add list of tables changed by transaction to Thd_ndb
        Change check_ndb_connection to take thd as argument, use current_thd as default
        Added m_rows_changed variable to keep track of if this handler has modified any records within the transaction
      sql/set_var.cc:
        Change format of code
        Sort sys__ variables in aplha order
      aa5dba42
  22. 14 Mar, 2005 1 commit
    • unknown's avatar
      BUG#6554 Problem Building MySql on Fedora Core 3 · 90697f24
      unknown authored
       - Moved static variables defined inside of function to file scope to avoid this linking problem on FC3
      
      
      sql/ha_berkeley.cc:
        Moved list of bdb extension to file scope
      sql/ha_ndbcluster.cc:
        Moved list of ndb extesions to file scope
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      90697f24
  23. 13 Mar, 2005 1 commit
    • unknown's avatar
      print xa recovery progress · ec372b09
      unknown authored
      add names to handlertons
      trans_need_2pc() macro
      
      
      sql/examples/ha_archive.cc:
        add names to handlertons
      sql/ha_berkeley.cc:
        add names to handlertons
      sql/ha_innodb.cc:
        add names to handlertons
      sql/ha_ndbcluster.cc:
        add names to handlertons
      sql/handler.cc:
        print xa recovery progress
      sql/handler.h:
        add names to handlertons
        trans_need_2pc() macro
      sql/log.cc:
        add names to handlertons
      ec372b09
  24. 09 Mar, 2005 3 commits
  25. 07 Mar, 2005 2 commits
  26. 24 Feb, 2005 1 commit
    • unknown's avatar
      bug#8786 - ndb autodiscover, sometimes fails · 6b38100d
      unknown authored
        remove dict forwarding
        add api retries on NotMaster
        
      
      
      ndb/include/kernel/signaldata/AlterIndx.hpp:
        Add NotMaster error code
      ndb/include/kernel/signaldata/BuildIndx.hpp:
        Add NotMaster error code
      ndb/include/kernel/signaldata/CreateIndx.hpp:
        Add NotMaster error code
      ndb/include/kernel/signaldata/CreateTrig.hpp:
        Add NotMaster error code
      ndb/include/kernel/signaldata/DropIndx.hpp:
        Add NotMaster error code
      ndb/src/kernel/blocks/dbdict/Dbdict.cpp:
        Never forward requests,
          instead REF to API who will retry towards correct node
      ndb/src/ndbapi/NdbDictionaryImpl.cpp:
        1) Set error code for timeout
        2) Handle NotMaster with retry in all DICT requests
      ndb/src/ndbapi/ndb_cluster_connection.cpp:
        Fix so that input values is in seconds and not 100ms's
      sql/ha_ndbcluster.cc:
        Wait 3 sec for all nodes to connect...
      6b38100d