An error occurred fetching the project authors.
  1. 04 Nov, 2003 2 commits
    • unknown's avatar
      fix for r-tree code (memory overlap reported by valgrind) · a1fcc351
      unknown authored
      new comments.
      
      
      myisam/mi_open.c:
        fix for r-tree code (memory overlap reported by valgrind)
      myisam/myisamdef.h:
        fix for r-tree code (memory overlap reported by valgrind)
      myisam/rt_index.c:
        fix for r-tree code (memory overlap reported by valgrind)
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      a1fcc351
    • unknown's avatar
      Removed some warnings reported by valgrind · 0712ce9e
      unknown authored
      After merge fixes.
      Now code compiles, but there is still some valgrind warnings that needs to be fixed
      
      
      myisam/mi_rnext_same.c:
        handle case where rtree_find_next() returns an error
        (assume this means that there was no more keys)
      myisam/rt_index.c:
        Code cleanup
      mysql-test/r/func_crypt.result:
        Update results
      mysql-test/r/func_group.result:
        Update results
      mysql-test/r/null_key.result:
        Update results
      mysql-test/r/order_by.result:
        Update results
      mysql-test/r/query_cache.result:
        Update results
      mysql-test/r/range.result:
        Update results
      mysql-test/r/rpl_trunc_binlog.result:
        Update results
      mysql-test/t/fulltext.test:
        Fix error numbers
      mysql-test/t/func_crypt.test:
        Fixed test for 4.1
      mysql-test/t/range.test:
        Moved tests to be in sync with 4.0
      mysys/test_charset.c:
        Removed acccess to non existing functions
      sql-common/client.c:
        Merge fix
      sql/item_strfunc.cc:
        Simple code cleanup
        Don't call ->c_ptr() when you don't need a 0 terminated string
        (Causes warnings from valgrind)
      sql/log_event.cc:
        After merge fixes
      sql/protocol.cc:
        Change default catalog name to 'def'
      sql/spatial.cc:
        Code cleanup
      sql/sql_class.cc:
        After merge fixes
      sql/time.cc:
        Ensure that time object is cleared on error
      sql/unireg.cc:
        Removed warning reported by valgrind
      0712ce9e
  2. 09 Aug, 2003 1 commit
    • unknown's avatar
      set_var.cc, mysqld.cc, handler.cc, set_var.h, handler.h: · cbd85f9d
      unknown authored
        Added key cache parameters for midpoint insertion strategy
      Many files:
        Added midpoint insertion strategy for key cache
      mi_test2.c:
        Added a parameter to resize_key_cache
      
      
      mysys/mf_keycache.c:
        Added midpoint insertion strategy for key cache
      myisam/mi_check.c:
        Added midpoint insertion strategy for key cache
      myisam/mi_page.c:
        Added midpoint insertion strategy for key cache
      myisam/mi_range.c:
        Added midpoint insertion strategy for key cache
      myisam/rt_index.c:
        Added midpoint insertion strategy for key cache
      myisam/rt_split.c:
        Added midpoint insertion strategy for key cache
      myisam/mi_delete.c:
        Added midpoint insertion strategy for key cache
      myisam/mi_preload.c:
        Added midpoint insertion strategy for key cache
      myisam/mi_search.c:
        Added midpoint insertion strategy for key cache
      myisam/mi_write.c:
        Added midpoint insertion strategy for key cache
      myisam/rt_key.c:
        Added midpoint insertion strategy for key cache
      myisam/mi_test2.c:
        Added a parameter to resize_key_cache
      isam/_page.c:
        Added midpoint insertion strategy for key cache
      include/my_sys.h:
        Added midpoint insertion strategy for key cache
      myisam/myisamdef.h:
        Added midpoint insertion strategy for key cache
      sql/handler.h:
        Added key cache parameters for midpoint insertion strategy.
      sql/set_var.h:
        Added key cache parameters for midpoint insertion strategy.
      sql/handler.cc:
        Added key cache parameters for midpoint insertion strategy.
      sql/mysqld.cc:
        Added key cache parameters for midpoint insertion strategy.
      sql/set_var.cc:
        Added key cache parameters for midpoint insertion strategy.
      cbd85f9d
  3. 20 Mar, 2003 1 commit
    • unknown's avatar
      R-tree bug fixes. · 83a4fcac
      unknown authored
      myisam/rt_index.c:
        Should call find_first() instead of find_next() after key deletion.
        Fixed type cast.
      myisam/sp_key.c:
        Fixed spatial key creation.
      sql/field.cc:
        To get rid of warning.
      83a4fcac
  4. 05 Mar, 2003 1 commit
  5. 25 Feb, 2003 1 commit
  6. 20 Feb, 2003 1 commit
  7. 19 Feb, 2003 1 commit
  8. 18 Feb, 2003 1 commit
    • unknown's avatar
      bug fixes · ac2f4744
      unknown authored
      myisam/rt_index.c:
        bug fix
      myisam/rt_key.c:
        bug fix
      myisam/rt_test.c:
        bug fix
      ac2f4744
  9. 12 Feb, 2003 1 commit
    • unknown's avatar
      rt_index.c: · f3282731
      unknown authored
        Bug fix
      
      
      myisam/rt_index.c:
        Bug fix
      f3282731
  10. 20 Feb, 2002 1 commit
    • unknown's avatar
      This ChangeSet adds RTREE support into myisam library. · 3d5dc65d
      unknown authored
      RTREEs will be used for GIS extension in MySQL
      
      
      myisam/.cvsignore:
        Added sp_test and rt_test
      myisam/Makefile.am:
        Added RTREE files
      myisam/mi_create.c:
        Added RTREE/SPATIAL initialization
      myisam/mi_delete.c:
        Switched to use virual function, instead of mi_ck_delete() direct call
      myisam/mi_key.c:
        Added sp_make_key() call in the case of SPATIAL index type
      myisam/mi_open.c:
        Added some new initialization actions which depend on key_alg being used: RTREE or BTREE
      myisam/mi_range.c:
        Rtree estimation
      myisam/mi_rkey.c:
        rtree
      myisam/mi_rnext.c:
        rtree
      myisam/mi_rnext_same.c:
        rtree
      myisam/mi_static.c:
        New search flags for bounding rectungles
      myisam/mi_test1.c:
        one now should always specify key_alg during keyinfo initializing: BTREE or RTREE
      myisam/mi_test2.c:
        Added key_alg initializing
      myisam/mi_test3.c:
        Added key_alg initialization
      myisam/mi_update.c:
        Switched to virtual functions, instead of mi_ck_delete/mi_ck_write direct call
      myisam/mi_write.c:
        Virtual function instead of mi_ck_write() direct call
      myisam/myisamdef.h:
        Rtree additions
      3d5dc65d