An error occurred fetching the project authors.
  1. 24 Jun, 2004 2 commits
    • unknown's avatar
      Followup to cleanup in handler interface. · 7c5b6ec3
      unknown authored
      sql/ha_myisam.h:
        - max_supported_key_part_length() is const now
      sql/ha_myisammrg.h:
        - max_supported_key_part_length() is const now
      sql/handler.h:
        - max_supported_key_part_length() is const now
        - removed warning about wrong order of initializer in handler ocnstructor.
      7c5b6ec3
    • unknown's avatar
      bug#4089 - JOIN::join_free calling mysql_unlock w/o index_end() before · ff736789
      unknown authored
      sql/ha_myisam.h:
        cleanup
      mysql-test/r/bdb.result:
        bug#4089
      mysql-test/t/bdb.test:
        bug#4089
      sql/opt_range.cc:
        be sloppy
      sql/sql_select.cc:
        JOIN::join_free - pass it down the tree (of selects)
        call mysql_unlock_tables only in top-level select
      ff736789
  2. 23 Jun, 2004 1 commit
    • unknown's avatar
      handler interface cleanups: · 9a554b47
      unknown authored
        more logical table/index_flags
        return  HA_ERR_WRONG_COMMAND instead of abstract methods where appropriate
        max_keys and other limits renamed to max_supported_keys/etc
        max_keys/etc are now wrappers to max_supported_keys/etc 
        ha_index_init/ha_rnd_init/ha_index_end/ha_rnd_end are now wrappers to real {index,rnd}_{init,end} to enforce strict pairing
      
      
      include/myisam.h:
        increasing myisam_max_temp_file_length
      include/my_base.h:
        handler interface cleanup
      myisam/mi_static.c:
        warning removed
      mysql-test/Makefile.am:
        followup
      mysql-test/r/fulltext.result:
        fulltext indexes are not ordered
      mysql-test/r/rpl_user_variables.result:
        followup
      sql/field.cc:
        index_flags
      sql/filesort.cc:
        rnd_init -> ha_rnd_init
        rnd_end -> ha_rnd_end
      sql/ha_berkeley.cc:
        cleanup
      sql/ha_berkeley.h:
        table/index_flags revamped
      sql/ha_heap.cc:
        ensure index is accessed only after index_init (esp. important for temp tables)
      sql/ha_heap.h:
        table/index_flags revamped
      sql/ha_innodb.cc:
        don't workaround MySQL sloppiness
      sql/ha_innodb.h:
        table/index_flags revamped
      sql/ha_isam.h:
        table/index_flags revamped
      sql/ha_isammrg.h:
        table/index_flags revamped
      sql/ha_myisam.cc:
        ensure index is accessed only after index_init (esp. important for temp tables)
      sql/ha_myisam.h:
        table/index_flags revamped
      sql/ha_myisammrg.h:
        table/index_flags revamped
      sql/handler.cc:
        handler interface cleanups
      sql/handler.h:
        handler interface cleanups:
          more logical table/index_flags
          return  HA_ERR_WRONG_COMMAND instead of abstract methods
          max_keys and other limits renamed to max_supported_keys/etc
          max_keys/etc are now wrappers to max_supported_keys/etc 
          ha_index_init/ha_rnd_init/ha_index_end/ha_rnd_end are now wrappers to enforce strict pairing
      sql/item_subselect.cc:
        index_init/index_end/rnd_init/rnd_end strict pairing fixed
      sql/lex.h:
        renamed to avoid conflicts
      sql/opt_range.cc:
        index_init/index_end/rnd_init/rnd_end strict pairing fixed
        table/index_flags cleanup
      sql/opt_range.h:
        index_init/index_end/rnd_init/rnd_end strict pairing fixed
      sql/opt_sum.cc:
        index_init/index_end/rnd_init/rnd_end strict pairing fixed
        table/index_flags cleanup
      sql/records.cc:
        index_init/index_end/rnd_init/rnd_end strict pairing fixed
      sql/sql_acl.cc:
        index_init/index_end/rnd_init/rnd_end strict pairing fixed
      sql/sql_cache.cc:
        cleanup
      sql/sql_delete.cc:
        index_init/index_end/rnd_init/rnd_end strict pairing fixed
      sql/sql_handler.cc:
        index_init/index_end/rnd_init/rnd_end strict pairing fixed
      sql/sql_help.cc:
        index_init/index_end/rnd_init/rnd_end strict pairing fixed
      sql/sql_insert.cc:
        table/index_flags cleanup
      sql/sql_select.cc:
        index_init/index_end/rnd_init/rnd_end strict pairing fixed
        table/index_flags cleanup
      sql/sql_table.cc:
        index_init/index_end/rnd_init/rnd_end strict pairing fixed
        table/index_flags cleanup
      sql/sql_update.cc:
        index_init/index_end/rnd_init/rnd_end strict pairing fixed
      sql/sql_yacc.yy:
        INDEX -> INDEX_SYM
      sql/table.cc:
        table/index_flags cleanup
      9a554b47
  3. 16 May, 2004 1 commit
    • unknown's avatar
      key_cmp -> key_cmp_if_same · 70f79563
      unknown authored
      New records_in_range() interface (similar to read_range())
      Macros for faster bitmap handling
      Simplify read_range() code (#WL1786)
      New general key_cmp() function to compare keys
      
      
      
      
      heap/hp_hash.c:
        New records_in_range() interface
      include/heap.h:
        New records_in_range() interface
      include/my_base.h:
        Moved 'key_range' here so that all table handlers can use it
      include/my_bitmap.h:
        Make some bitmap functions inline for faster usage in one thread
      include/myisam.h:
        New records_in_range() interface
      include/myisammrg.h:
        New records_in_range() interface
      myisam/mi_range.c:
        New records_in_range() interface
      myisam/mi_test2.c:
        New records_in_range() interface
      myisam/rt_test.c:
        New records_in_range() interface
        Indentation fixes
      myisam/sp_test.c:
        New records_in_range() interface
        Indentation fixes
      myisammrg/myrg_range.c:
        New records_in_range() interface
      mysys/my_bitmap.c:
        Make some bitmap functions inline for faster usage in one thread
      sql/examples/ha_example.cc:
        New records_in_range() interface
      sql/field.cc:
        Fixed indentation
      sql/ha_berkeley.cc:
        New records_in_range() interface
      sql/ha_berkeley.h:
        New records_in_range() interface
      sql/ha_heap.cc:
        New records_in_range() interface
      sql/ha_heap.h:
        New records_in_range() interface
      sql/ha_innodb.cc:
        New records_in_range() interface
      sql/ha_innodb.h:
        New records_in_range() interface
      sql/ha_isam.cc:
        New records_in_range() interface
      sql/ha_isam.h:
        New records_in_range() interface
      sql/ha_myisam.cc:
        New records_in_range() interface
      sql/ha_myisam.h:
        New records_in_range() interface
      sql/ha_myisammrg.cc:
        New records_in_range() interface
      sql/ha_myisammrg.h:
        New records_in_range() interface
      sql/ha_ndbcluster.cc:
        New records_in_range() interface
      sql/ha_ndbcluster.h:
        New records_in_range() interface
      sql/handler.cc:
        Simplify read_range() interface:
        - Add 'eq_range' to read_range_first
        - Remove 'eq_range' parameer from read_range_next()
        - Trust values from index_next_same()
        - Simplfy compare_key() by moving key_comparision to key.cc (as this code can be reused from other places)
      sql/handler.h:
        Move key_range to my_base.h to be used by external table handlers
        Simplify read_range() interface
        New records_in_range() interface
      sql/key.cc:
        Rename key_cmp() to key_cmp_if_same() to make it more descriptive
        Add new key_cmp() function usable from range and handler code.
      sql/mysql_priv.h:
        Prototypes for new functions
      sql/opt_range.cc:
        New records_in_range() interface
        Simplify cmp_prev()
        (We can in 5.0 simplify cmp_next() the same way)
      sql/opt_range.h:
        Added key_part_info to QUICK_SELECT to be able to use key_cmp() in get_next()
      sql/opt_sum.cc:
        key_cmp -> key_cmp_if_same
      sql/sql_acl.cc:
        key_cmp -> key_cmp_if_same
      sql/sql_select.cc:
        key_cmp -> key_cmp_if_same
      70f79563
  4. 06 May, 2004 1 commit
    • unknown's avatar
      WL#1687 - Optimize UNION DISTINCT ... UNION ALL (again). · bfe2425a
      unknown authored
      HEAP: Copies the key count to a backup variable and sets the key count to zero.
      That way, no HEAP function will ever try to touch any index.
      Re-enabling is done by copying back the backup variable.
      To avoid memory leak at table close, disable deletes all index trees.
      Re-enabling must be done with empty indexes and data anyway. Otherwise,
      the indexes would need to be repaired, wich HEAP is not capable of.
      MyISAM: Only the key_map is cleared and set.
      Re-enabling must be done with empty indexes and data. Otherwise, repair needs
      to be done which will enable all keys persistently.
      The former implementation disabled only non-unique keys and maked this persistent.
      The new implementation additionally can disable all keys, but only without
      making this persistent. Re-enabling all keys can be done without repair,
      if data file and indexes are empty.
      
      
      heap/heapdef.h:
        WL#1687 - Optimize UNION DISTINCT ... UNION ALL (again).
        Pulled hp_clear_keys() out of hp_clear().
      heap/hp_clear.c:
        WL#1687 - Optimize UNION DISTINCT ... UNION ALL (again).
        Pulled hp_clear_keys() out of hp_clear().
        Added the new functions for disabling and enabling keys and to ask for the key state.
      include/heap.h:
        WL#1687 - Optimize UNION DISTINCT ... UNION ALL (again).
        Added a new HP_SHARE element to save the key count while keys are disabled.
        Added declarations for the new functions.
      myisam/mi_open.c:
        WL#1687 - Optimize UNION DISTINCT ... UNION ALL (again).
        Added the new functions for disabling and enabling keys and to ask for the key state.
      myisam/myisamdef.h:
        WL#1687 - Optimize UNION DISTINCT ... UNION ALL (again).
        Added declarations for the new functions.
      sql/ha_heap.cc:
        WL#1687 - Optimize UNION DISTINCT ... UNION ALL (again).
        Pulled set_keys_for_scanning() out of open().
        Added the new functions for disabling and enabling keys and to ask for the key state.
      sql/ha_heap.h:
        WL#1687 - Optimize UNION DISTINCT ... UNION ALL (again).
        Added declarations for the new functions.
      sql/ha_myisam.cc:
        WL#1687 - Optimize UNION DISTINCT ... UNION ALL (again).
        Extended disable_indexes() for all keys and no save.
        The argument is now 'mode' as it must handle different cases.
        Extended enable_indexes() for no save.
        The new feature needs the new argument 'mode' with the same semantics as in disable_indexes().
        Added indexes_are_disabled() to ask for the key state.
        Extended the existing call to enable_indexes() by the new argument.
      sql/ha_myisam.h:
        WL#1687 - Optimize UNION DISTINCT ... UNION ALL (again).
        Modified the declarations of dis-/enable_indexes() for the new argument.
        Added the declaration of the new function to ask for the key state.
      sql/handler.h:
        WL#1687 - Optimize UNION DISTINCT ... UNION ALL (again).
        Added declarations for the operation modes for the key switching functions.
        Modified the declarations of dis-/enable_indexes() for the new argument.
        Added the declaration of the new function to ask for the key state.
      sql/sql_select.cc:
        WL#1687 - Optimize UNION DISTINCT ... UNION ALL (again).
        In create_myisam_from_heap() take notice of disabled keys
        and disable them in the new table before copying the data.
      sql/sql_table.cc:
        WL#1687 - Optimize UNION DISTINCT ... UNION ALL (again).
        Modified the calls of dis-/enable_indexes() for the new argument.
      bfe2425a
  5. 06 Apr, 2004 1 commit
    • unknown's avatar
      ::reset(), HA_FAST_KEY_READ, disable_indexes(), enable_indexes(),... · c6270543
      unknown authored
      ::reset(), HA_FAST_KEY_READ, disable_indexes(), enable_indexes(), start_bulk_insert(), end_bulk_insert()
      Field::val_str simplification, comment
      
      
      include/my_base.h:
        typos fixed
      mysql-test/r/myisam.result:
        alter table enable/disable keys
      mysql-test/t/help.test:
        cleanup
      mysql-test/t/myisam.test:
        alter table enable/disable keys
      sql/field.cc:
        Field::val_str() simplification
      sql/field.h:
        Field::val_str() simplification and comment
      sql/field_conv.cc:
        Field::val_str() simplification
      sql/ha_berkeley.cc:
        ::reset(), HA_FAST_KEY_READ
      sql/ha_berkeley.h:
        ::reset(), HA_FAST_KEY_READ
      sql/ha_heap.cc:
        ::reset(), HA_FAST_KEY_READ
      sql/ha_heap.h:
        ::reset(), HA_FAST_KEY_READ
      sql/ha_innodb.cc:
        ::reset(), HA_FAST_KEY_READ
      sql/ha_innodb.h:
        ::reset(), HA_FAST_KEY_READ
      sql/ha_isam.cc:
        ::reset(), HA_FAST_KEY_READ
      sql/ha_isam.h:
        ::reset(), HA_FAST_KEY_READ
      sql/ha_isammrg.cc:
        ::reset(), HA_FAST_KEY_READ
      sql/ha_isammrg.h:
        ::reset(), HA_FAST_KEY_READ
      sql/ha_myisam.cc:
        ::reset(), HA_FAST_KEY_READ, disable_indexes(), enable_indexes(), start_bulk_insert(), end_bulk_insert()
      sql/ha_myisam.h:
        ::reset(), HA_FAST_KEY_READ, disable_indexes(), enable_indexes(), start_bulk_insert(), end_bulk_insert()
      sql/ha_myisammrg.cc:
        ::reset(), HA_FAST_KEY_READ
      sql/ha_myisammrg.h:
        ::reset(), HA_FAST_KEY_READ
      sql/handler.h:
        ::reset(), HA_FAST_KEY_READ, disable_indexes(), enable_indexes(), start_bulk_insert(), end_bulk_insert()
      sql/item.cc:
        Field::val_str() simplification
      sql/item_sum.cc:
        Field::val_str() simplification
      sql/key.cc:
        Field::val_str() simplification
      sql/opt_range.cc:
        Field::val_str() simplification
      sql/protocol.cc:
        Field::val_str() simplification
      sql/records.cc:
        HA_FAST_KEY_READ
      sql/sql_acl.cc:
        Field::val_str() simplification
      sql/sql_base.cc:
        ::reset
      sql/sql_insert.cc:
        ::reset(), start_bulk_insert(), end_bulk_insert()
      sql/sql_load.cc:
        start_bulk_insert(), end_bulk_insert()
      sql/sql_show.cc:
        Field::val_str() simplification
      sql/sql_table.cc:
        disable_indexes(), enable_indexes(), start_bulk_insert(), end_bulk_insert()
      sql/table.cc:
        Field::val_str() simplification
      c6270543
  6. 04 Mar, 2004 1 commit
  7. 20 Feb, 2004 1 commit
    • unknown's avatar
      longer myisam keys · 74fa5f09
      unknown authored
      mysql-test/r/ctype_utf8.result:
        updated
      mysql-test/r/key.result:
        updated
      mysql-test/r/myisam.result:
        updated
      mysql-test/r/type_blob.result:
        updated
      mysql-test/t/ctype_utf8.test:
        updated
      mysql-test/t/key.test:
        updated
      mysql-test/t/myisam.test:
        updated
      mysql-test/t/type_blob.test:
        updated
      74fa5f09
  8. 30 Dec, 2003 1 commit
    • unknown's avatar
      Some small portability fixes. · 376fb080
      unknown authored
      Added support for lower_case_table_names=2, which is to be used on case insensitive file systems.
      This tells MySQL to preserve the used case of filenames and database names to make it esier to move files between cases sensitive can case insensitive file systems (like Windows and Linux)
      
      
      client/mysqltest.c:
        Indentation cleanup
      include/myisam.h:
        Made some pointers 'const'
      mysql-test/mysql-test-run.sh:
        Portability fix for OSX
      sql/filesort.cc:
        Safety fix (not needed for current code but needed for 5.0)
      sql/ha_berkeley.cc:
        More debugging
        Changed 'create' to return error number
      sql/ha_berkeley.h:
        Added HA_FILE_BASED
      sql/ha_innodb.cc:
        Added missing DBUG_RETURN
      sql/ha_isam.cc:
        Changed create to return error number
      sql/ha_isam.h:
        Added HA_FILE_BASED
      sql/ha_isammrg.h:
        Added HA_FILE_BASED
      sql/ha_myisam.cc:
        Changed create to return error number
      sql/ha_myisam.h:
        Added HA_FILE_BASED
      sql/ha_myisammrg.cc:
        Changed create to return error number
      sql/ha_myisammrg.h:
        Added HA_FILE_BASED
      sql/handler.cc:
        Ensure that table engines gets table names in lower case even if we are using lower_case_table_names
        Removed test for DB_TYPE_INNODB by ensuring that create method returns error number.
      sql/handler.h:
        Added HA_FILE_BASED
        Made some struct entries 'const'
        Added 'alias' for create to be able to create tables in mixed case on case insensitive file systems
      sql/mysql_priv.h:
        Support for lower_case_table_names=2
      sql/mysqld.cc:
        Support for lower_case_table_names=2
        Moved test of case insenstive file system after all mutex are created
      sql/set_var.cc:
        Support for lower_case_table_names=2
      sql/sql_class.h:
        Indentation change
      sql/sql_db.cc:
        Support for lower_case_table_names=2
      sql/sql_insert.cc:
        Indentation change
      sql/sql_parse.cc:
        Support for lower_case_table_names=2
      sql/sql_rename.cc:
        Support for lower_case_table_names=2
        Added missing 'unpack_filename' to RENAME which may fix a bug in RENAME TABLE on windows
      sql/sql_show.cc:
        If lower_case_table_name=2 is given, show original case in SHOW CREATE TABLE
      sql/sql_table.cc:
        Support for lower_case_table_names=2 for DROP TABLE, RENAME TABLE, ALTER TABLE and CREATE TABLE
      376fb080
  9. 23 Oct, 2003 1 commit
    • unknown's avatar
      query expansion for fulltext search · aa98f58b
      unknown authored
      myisam/ft_boolean_search.c:
        assert.h and queues.h moved to ftdefs.h
      myisam/ft_parser.c:
        ft_parse() with alloc
      myisam/ft_static.c:
        api changes, ft_max_word_len_for_sort variable removed
      myisam/ft_update.c:
        ft_parse() with alloc
      myisam/ftdefs.h:
        variable ft_max_word_len_for_sort -> define FT_MAX_WORD_LEN_FOR_SORT
        api changes, ft_max_word_len_for_sort variable removed
        ft_parse() with alloc
      myisam/mi_check.c:
        variable ft_max_word_len_for_sort -> define FT_MAX_WORD_LEN_FOR_SORT
      myisam/myisamchk.c:
        ft_max_word_len_for_sort removed
      mysql-test/r/fulltext.result:
        query expansion tests
      mysql-test/r/fulltext_var.result:
        ft_max_word_len_for_sort removed
      mysql-test/t/fulltext.test:
        query expansion tests
      sql/ha_myisam.h:
        ft api changes for query expansion
      sql/mysqld.cc:
        ft_max_word_len_for_sort removed
        ft_query_expansion_limit added
      sql/set_var.cc:
        ft_max_word_len_for_sort removed
        ft_query_expansion_limit added
      sql/sql_yacc.yy:
        EXPANSION added to keyword: rule
      aa98f58b
  10. 22 Oct, 2003 1 commit
  11. 05 Aug, 2003 1 commit
    • unknown's avatar
      table checksum background: · eb5f968c
      unknown authored
         my_checksum() mysys function
         NISAM checksum code moved from mysys to isam/ - it's obsolete
         MyISAM checksum code moved to mysys
         table's checksum accessible from sql layer
         SHOW TABLE STATUS shows checksum (WL#646)
      code cleanup
      
      
      include/my_sys.h:
        table checksum background: my_checksum() mysys function
      include/myisam.h:
        table checksum background: my_checksum() mysys function
        MyISAM checksum code moved to mysys
      isam/isamchk.c:
        table checksum background:
        NISAM checksum code moved from mysys to isam/ - it's obsolete
      isam/isamdef.h:
        table checksum background:
        NISAM checksum code moved from mysys to isam/ - it's obsolete
      isam/open.c:
        table checksum background:
        NISAM checksum code moved from mysys to isam/ - it's obsolete
      isam/pack_isam.c:
        table checksum background:
        NISAM checksum code moved from mysys to isam/ - it's obsolete
      myisam/mi_checksum.c:
        table checksum background: my_checksum() mysys function
        MyISAM checksum code moved to mysys
      mysys/checksum.c:
        table checksum background: my_checksum() mysys function
        MyISAM checksum code moved to mysys
      sql/ha_myisam.cc:
        table checksum background: table's checksum accessible from sql layer
      sql/ha_myisam.h:
        table checksum background: table's checksum accessible from sql layer
      sql/handler.h:
        table checksum background: table's checksum accessible from sql layer
        code cleanup
      sql/sql_lex.h:
        table checksum background: table's checksum accessible from sql layer
        code cleanup
      sql/sql_select.cc:
        warning removed
      sql/sql_show.cc:
        SHOW TABLE STATUS shows checksum (WL#646)
      sql/sql_yacc.yy:
        cleanup
        (DROP TABLES syntax added as a side effect :))
      eb5f968c
  12. 16 Jul, 2003 1 commit
    • unknown's avatar
      mi_keycache.c: · 176d3364
      unknown authored
        new file
      Many files:
        Added CACHE INDEX command
      
      
      sql/ha_myisam.cc:
        Added CACHE INDEX command
      sql/handler.cc:
        Added CACHE INDEX command
      sql/sql_lex.cc:
        Added CACHE INDEX command
      sql/sql_parse.cc:
        Added CACHE INDEX command
      sql/sql_table.cc:
        Added CACHE INDEX command
      sql/ha_myisam.h:
        Added CACHE INDEX command
      sql/handler.h:
        Added CACHE INDEX command
      sql/mysql_priv.h:
        Added CACHE INDEX command
      sql/sql_lex.h:
        Added CACHE INDEX command
      sql/sql_yacc.yy:
        Added CACHE INDEX command
      176d3364
  13. 12 Jun, 2003 1 commit
    • unknown's avatar
      Many files: · f7aed024
      unknown authored
        New feature: preload indexes into key cache.
      mi_preload.c:
        new file
      Many files:
        Added preload statement.
      
      
      sql/ha_myisam.h:
        Added preload statement.
      sql/handler.cc:
        Added preload statement.
      sql/lex.h:
        Added preload statement.
      sql/mysql_priv.h:
        Added preload statement.
      sql/sql_lex.h:
        Added preload statement.
      sql/sql_base.cc:
        Added preload statement.
      sql/sql_table.cc:
        New feature: preload indexes into key cache.
      sql/sql_parse.cc:
        New feature: preload indexes into key cache.
      sql/mysqld.cc:
        New feature: preload indexes into key cache.
      sql/set_var.cc:
        New feature: preload indexes into key cache.
      sql/sql_yacc.yy:
        New feature: preload indexes into key cache.
      sql/ha_myisam.cc:
        New feature: preload indexes into key cache.
      sql/table.h:
        New feature: preload indexes into key cache.
      mysys/mf_keycache.c:
        New feature: preload indexes into key cache.
      myisam/myisamdef.h:
        New feature: preload indexes into key cache.
      myisam/mi_extra.c:
        New feature: preload indexes into key cache.
      myisam/Makefile.am:
        New feature: preload indexes into key cache.
      include/my_base.h:
        New feature: preload indexes into key cache.
      include/my_sys.h:
        New feature: preload indexes into key cache.
      include/myisam.h:
        New feature: preload indexes into key cache.
      f7aed024
  14. 08 Apr, 2003 1 commit
  15. 15 Jan, 2003 1 commit
    • unknown's avatar
      SCRUM · 09b79b65
      unknown authored
      embedded library trimming
      
      
      include/my_global.h:
        HAVE_REPLICATION & HAVE_EXTERNAL_CLIENT macro definitions
      libmysqld/lib_sql.cc:
        Protocol:: methods implementation for embedded case
      sql/field.cc:
        geometry type methods implementations
      sql/ha_berkeley.cc:
        set_nfields deletion
      sql/ha_innodb.cc:
        macro changed
      sql/ha_myisam.cc:
        set_nfields deletion
      sql/ha_myisam.h:
        code #ifdef-ed
      sql/item.cc:
        bugfix
      sql/item_func.cc:
        macro changed
      sql/item_strfunc.cc:
        superfluous code deleted
      sql/log.cc:
        HAVE_REPLICATION instead of EMBEDDED_LIBRARY
      sql/log_event.cc:
        #ifdef constructions changed
      sql/log_event.h:
        #ifdef-s changed
      sql/mf_iocache.cc:
        HAVE_REPLICATION instead of EMBEDDED_LIBRARY
      sql/mini_client.cc:
        HAVE_REPLICATION instead of EMBEDDED_LIBRARY
      sql/mysql_priv.h:
        code removation
      sql/mysqld.cc:
        HAVE_REPLICATION instead of EMBEDDED_LIBRARY
      sql/opt_range.cc:
        code trimming
      sql/protocol.cc:
        net_store_data becomes a member of Protocol
      sql/protocol.h:
        changes to make Protocol working in embedded library
      sql/repl_failsafe.cc:
        HAVE_REPLICATION instead of EMBEDDED_LIBRARY
      sql/repl_failsafe.h:
        HAVE_REPLICATION instead of EMBEDDED_LIBRARY
      sql/set_var.cc:
        HAVE_REPLICATION instead of EMBEDDED_LIBRARY
      sql/slave.cc:
        HAVE_REPLICATION instead of EMBEDDED_LIBRARY
      sql/slave.h:
        HAVE_REPLICATION instead of EMBEDDED_LIBRARY
      sql/sql_parse.cc:
        code trimming
      sql/sql_prepare.cc:
        comment added
      sql/sql_repl.cc:
        HAVE_REPLICATION instead of EMBEDDED_LIBRARY
      sql/sql_repl.h:
        HAVE_REPLICATION instead of EMBEDDED_LIBRARY
      sql/sql_show.cc:
        mysql_list_processes to work in embedded library
      sql/sql_table.cc:
        set_nfields deletion
      09b79b65
  16. 23 Jul, 2002 1 commit
    • unknown's avatar
      New SET syntax & system variables. · a8caad31
      unknown authored
      Made a some new buffers thread specific and changeable.
      Resize of key_buffer.
      AUTO_COMMIT -> AUTOCOMMIT
      Fixed mutex bug in DROP DATABASE
      Fixed bug when using auto_increment as second part of a key where first part could include NULL.
      Split handler->extra() to extra() and extra_opt() to be able to support thread specific buffers.
      Don't write message to error log when slave reconnects becasue of timeout.
      Fixed possible update problem when using DELETE/UPDATE on small tables
      (In some cases we used index even if table scanning would be better)
      A lot of minior code cleanups
      
      
      BitKeeper/deleted/.del-net.c~ef21d6402bb882f9:
        Delete: libmysql/net.c
      BitKeeper/etc/ignore:
        added libmysql/net.c
      Docs/manual.texi:
        New SET syntax & system variables.
      client/client_priv.h:
        moved order of include files
      client/mysql.cc:
        Removed compiler warning
      client/mysqladmin.c:
        Use new SHOW GLOBAL syntax (if server supports it)
      configure.in:
        version change
      include/Makefile.am:
        indentation cleanup
      include/my_getopt.h:
        Made some helper functions global
      include/my_sys.h:
        Removed not used code
      include/myisam.h:
        Added extra argument to ..._extra()
      include/myisammrg.h:
        Added extra argument to ..._extra()
      include/mysql_com.h:
        changed NET to be able to support changeable system variables
      include/mysql_embed.h:
        Added MYSQL_SERVER_SUFFIX
      include/mysql_version.h.in:
        Added check of multiple including (needed for embedded library)
      include/mysqld_error.h:
        New error messages
      innobase/dict/dict0dict.c:
        Remove compiler warnings
      innobase/include/ut0mem.h:
        Remove compiler warnings
      innobase/include/ut0mem.ic:
        Remove compiler warnings
      isam/isamchk.c:
        new init_key_cache() arguments
      isam/isamlog.c:
        new init_key_cache() arguments
      isam/test2.c:
        new init_key_cache() arguments
      isam/test3.c:
        new init_key_cache() arguments
      libmysql/Makefile.am:
        Removed net.c (Automaticly make it from net_serv.cc)
      libmysql/Makefile.shared:
        Removed net.c (Automaticly make it from net_serv.cc)
      libmysql/libmysql.c:
        Changeable system variables
      libmysqld/Makefile.am:
        Added set_var.cc file
      libmysqld/embedded_priv.h:
        Changed order of include fiels
      libmysqld/lib_sql.cc:
        merge with mysqld.cc (for changeable variables)
      libmysqld/libmysqld.c:
        New changeable system variables
      myisam/mi_check.c:
        Added extra argument to ..._extra()
      myisam/mi_extra.c:
        Added extra argument to ..._extra()
      myisam/mi_open.c:
        Removed not used variable
      myisam/mi_test1.c:
        Changed call to init_key_cache
      myisam/mi_test2.c:
        Added extra argument to ..._extra()
      myisam/mi_test3.c:
        Added extra argument to ..._extra()
      myisam/mi_write.c:
        Add cache size argument to bulk-insert-init
      myisam/myisamchk.c:
        Use new key cache
      myisam/myisamdef.h:
        new mi_init_bulk_insert() arguments
      myisam/myisamlog.c:
        Added extra argument to ..._extra()
      myisam/myisampack.c:
        Added extra argument to ..._extra()
      myisammrg/myrg_extra.c:
        Added extra argument to ..._extra()
      myisammrg/myrg_rrnd.c:
        Added extra argument to ..._extra()
      mysql-test/r/insert_select.result:
        New changeable system variables
      mysql-test/r/key.result:
        Test of bug in auto_increment
      mysql-test/r/query_cache.result:
        New changeable system variables
      mysql-test/r/rpl000001.result:
        New changeable system variables
      mysql-test/r/rpl000016.result:
        New changeable system variables
      mysql-test/r/union.result:
        New changeable system variables
      mysql-test/r/user_var.result:
        New changeable system variables
      mysql-test/r/variables.result:
        New changeable system variables
      mysql-test/t/key.test:
        Test of bug in auto_increment
      mysql-test/t/query_cache.test:
        New changeable system variables
      mysql-test/t/rpl000001.test:
        New changeable system variables
      mysql-test/t/rpl000009.test:
        New changeable system variables
      mysql-test/t/rpl000016.test:
        New changeable system variables
      mysql-test/t/rpl_compat.test:
        New changeable system variables
      mysql-test/t/union.test:
        New changeable system variables
      mysql-test/t/user_var.test:
        New changeable system variables
      mysql-test/t/variables.test:
        New changeable system variables
      mysys/default.c:
        Bigger default memory allocation
      mysys/mf_iocache.c:
        Removed compiler warning
      mysys/mf_keycache.c:
        Made key cache resizable on the fly
        Removed not needed extra argument to init_key_cache()
      mysys/my_getopt.c:
        Made some helper functions global
      sql/Makefile.am:
        Aded set_var.cc
      sql/convert.cc:
        Comment cleanup
      sql/field.cc:
        new changeable system variables
      sql/filesort.cc:
        new changeable system variables
      sql/ha_berkeley.cc:
        AUTO_COMMIT -> AUTOCOMMIT
      sql/ha_innodb.cc:
        new changeable system variables
      sql/ha_myisam.cc:
        Added extra argument to ..._extra()
      sql/ha_myisam.h:
        Added extra argument to ..._extra()
      sql/ha_myisammrg.cc:
        Added extra argument to ..._extra()
      sql/ha_myisammrg.h:
        Added extra argument to ..._extra()
      sql/handler.cc:
        Added extra argument to ..._extra()
        Added resize of key cache
        Change ha_table_typelib for use with new system variables
      sql/handler.h:
        Added extra argument to ..._extra()
      sql/item.cc:
        new changeable system variables
      sql/item.h:
        Added better support of Item_uint
      sql/item_func.cc:
        Added support for SET @@[global | session] system_variable
      sql/item_strfunc.cc:
        new changeable system variables
      sql/key.cc:
        Fixed bug in auto_increment on second part keys
      sql/lex.h:
        Removed not needed keywords
      sql/log.cc:
        new changeable system variables
      sql/log_event.cc:
        new changeable system variables
      sql/log_event.h:
        Removed not needed var reference
      sql/mini_client.cc:
        new changeable system variables
        code cleanup
      sql/mini_client.h:
        Indentation cleanup
      sql/mysql_priv.h:
        Changed order of include files & variables to make file more readable
      sql/mysqld.cc:
        Changed order of variables to make file more readable.
        Support for changeable variables
        Rename of system variables
        Moved init_vars to set_var.cc
        Changed output of --help
      sql/net_pkg.cc:
        Added my_net_local_init() to make it possible to set different defaults for network connection depending if you are a client, embedded library or server.
      sql/net_serv.cc:
        new changeable system variables
        To support this, some global variables had to be move to the NET structure.
      sql/records.cc:
        new changeable system variables
        use extra_opt()
      sql/repl_failsafe.cc:
        new changeable system variables
        minior code cleanups
      sql/repl_failsafe.h:
        removed not needed external var reference
      sql/share/czech/errmsg.txt:
        new changeable system variables
      sql/share/danish/errmsg.txt:
        new changeable system variables
      sql/share/dutch/errmsg.txt:
        new changeable system variables
      sql/share/english/errmsg.txt:
        new changeable system variables
      sql/share/estonian/errmsg.txt:
        new changeable system variables
      sql/share/french/errmsg.txt:
        new changeable system variables
      sql/share/german/errmsg.txt:
        new changeable system variables
      sql/share/greek/errmsg.txt:
        new changeable system variables
      sql/share/hungarian/errmsg.txt:
        new changeable system variables
      sql/share/italian/errmsg.txt:
        new changeable system variables
      sql/share/japanese/errmsg.txt:
        new changeable system variables
      sql/share/korean/errmsg.txt:
        new changeable system variables
      sql/share/norwegian-ny/errmsg.txt:
        new changeable system variables
      sql/share/norwegian/errmsg.txt:
        new changeable system variables
      sql/share/polish/errmsg.txt:
        new changeable system variables
      sql/share/portuguese/errmsg.txt:
        new changeable system variables
      sql/share/romanian/errmsg.txt:
        new changeable system variables
      sql/share/russian/errmsg.txt:
        new changeable system variables
      sql/share/slovak/errmsg.txt:
        new changeable system variables
      sql/share/spanish/errmsg.txt:
        new changeable system variables
      sql/share/swedish/errmsg.txt:
        new changeable system variables
      sql/share/ukrainian/errmsg.txt:
        new changeable system variables
      sql/slave.cc:
        new changeable system variables
        Added some suppression of error messages
        Initialize current_thd for all slave threads.
      sql/sql_acl.cc:
        Added checking of arguments for SET PASSWORD (for new SET defintion)
      sql/sql_acl.h:
        new prototypes
      sql/sql_base.cc:
        new changeable system variables
      sql/sql_cache.cc:
        new changeable system variables
      sql/sql_cache.h:
        Renamed some arguments to make code more readable
      sql/sql_class.cc:
        new changeable system variables
      sql/sql_class.h:
        New changeable system variables
        Code cleanup
      sql/sql_db.cc:
        Fixed bug in DROP DATABASE
      sql/sql_delete.cc:
        Usage of wrong define in test (possible speed problem)
      sql/sql_insert.cc:
        use extra_opt()
        Code cleanup
      sql/sql_lex.cc:
        Added support for SET @@[global | session] system_variable
      sql/sql_lex.h:
        Added support for SET @@[global | session] system_variable
      sql/sql_load.cc:
        Cleanup for embedded library
        Use extra_opt()
      sql/sql_parse.cc:
        Cleanup for embedded library
        New changeable system variables
      sql/sql_repl.cc:
        new changeable system variables
      sql/sql_repl.h:
        Fixed variable definitions
      sql/sql_select.cc:
        new changeable system variables
      sql/sql_show.cc:
        New changeable system variables
      sql/sql_table.cc:
        Fixed bug in DROP DATABASE
      sql/sql_union.cc:
        New changeable system variables
      sql/sql_update.cc:
        Usage of wrong define in test (possible speed problem)
      sql/sql_yacc.yy:
        New changeable system variables
      sql/structs.h:
        Added typedef for SHOW_VAR
      sql/table.cc:
        Fixed bug in auto_increment on second part keys
      sql/uniques.cc:
        Comment fix
      sql/unireg.h:
        A
      a8caad31
  17. 17 Jul, 2002 1 commit
    • unknown's avatar
      Some · 18e0dd1f
      unknown authored
      C++ comments cleanup
      
      
      sql/stacktrace.c:
        C++ comments cleanup
      sql/structs.h:
        C++ comments cleanup
      sql/ha_myisam.h:
        C++ comments cleanup
      include/config-os2.h:
        C++ comments cleanup
      include/sslopt-case.h:
        C++ comments cleanup
      mysys/mf_tempfile.c:
        C++ comments cleanup
      sql/mysql_priv.h:
        C++ comments cleanup
      sql/slave.h:
        C++ comments cleanup
      sql/time.cc:
        C++ comments cleanup
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      18e0dd1f
  18. 18 Jun, 2002 1 commit
    • unknown's avatar
      Made keyread (key scanning) a key specific attribute. · 518787c2
      unknown authored
      This avoids using fulltext keys for table scanning.
      This also reverts Sinisa's original fix for this problem.
      
      
      Docs/manual.texi:
        Update of SQL_JOIN_MAX_SIZE information3602
      client/mysqldump.c:
        comment cleanup
      include/my_aes.h:
        General cleanup for new file
      include/rijndael.h:
        General cleanup for new file
      include/sha1.h:
        General cleanup for new file
      mysys/my_aes.c:
        General cleanup for new file
      mysys/rijndael.c:
        General cleanup for new file
      mysys/sha1.c:
        General cleanup for new file
      sql/ha_berkeley.h:
        Made keyread (key scanning) a key specific attribute.
      sql/ha_innodb.cc:
        Merge with 3.23.x
      sql/ha_innodb.h:
        Made keyread (key scanning) a key specific attribute.
      sql/ha_isam.cc:
        Moved things to table_flags()
      sql/ha_isam.h:
        Made keyread (key scanning) a key specific attribute.
      sql/ha_myisam.cc:
        Made keyread (key scanning) a key specific attribute.
      sql/ha_myisam.h:
        Made keyread (key scanning) a key specific attribute.
      sql/ha_myisammrg.h:
        Made keyread (key scanning) a key specific attribute.
      sql/handler.h:
        Made keyread (key scanning) a key specific attribute.
      sql/item_strfunc.cc:
        Cleanup of AES_xxx code
      sql/opt_range.cc:
        Made keyread (key scanning) a key specific attribute.
      sql/sql_base.cc:
        Made keyread (key scanning) a key specific attribute.
      sql/sql_cache.cc:
        Removed compiler warning
      sql/sql_select.cc:
        Removed wrong patch to fulltext problem
      sql/table.cc:
        Made keyread (key scanning) a key specific attribute.
      sql/table.h:
        Made keyread (key scanning) a key specific attribute.
      518787c2
  19. 12 Apr, 2002 1 commit
    • unknown's avatar
      Update for BTREE keys in HEAP tables · 6326ec99
      unknown authored
      Split handler->option_flag() to handler->table_flags() and handler->index_flags()
      
      
      Docs/manual.texi:
        Updated standard binary options
      include/my_base.h:
        Update for BTREE keys in HEAP tables
      libmysql/net.c:
        merge with net_serv.cc
      mysql-test/r/func_misc.result:
        Update for new behaviour of inet_ntoa
      sql/field.cc:
        Update for BTREE keys in HEAP tables
      sql/field.h:
        Update for BTREE keys in HEAP tables
      sql/filesort.cc:
        Update for BTREE keys in HEAP tables
      sql/ha_berkeley.h:
        Update for BTREE keys in HEAP tables
      sql/ha_heap.h:
        Update for BTREE keys in HEAP tables
      sql/ha_innodb.h:
        Update for BTREE keys in HEAP tables
      sql/ha_isam.cc:
        Update for BTREE keys in HEAP tables
      sql/ha_isam.h:
        Update for BTREE keys in HEAP tables
      sql/ha_isammrg.h:
        Update for BTREE keys in HEAP tables
      sql/ha_myisam.cc:
        Update for BTREE keys in HEAP tables
      sql/ha_myisam.h:
        Update for BTREE keys in HEAP tables
      sql/ha_myisammrg.h:
        Update for BTREE keys in HEAP tables
      sql/handler.cc:
        Update for BTREE keys in HEAP tables
      sql/handler.h:
        Update for BTREE keys in HEAP tables
      sql/log.cc:
        Update for BTREE keys in HEAP tables
      sql/net_serv.cc:
        Update for BTREE keys in HEAP tables
      sql/opt_range.cc:
        Update for BTREE keys in HEAP tables
      sql/opt_sum.cc:
        Update for BTREE keys in HEAP tables
      sql/records.cc:
        Update for BTREE keys in HEAP tables
      sql/sql_class.h:
        Update for BTREE keys in HEAP tables
      sql/sql_handler.cc:
        Update for BTREE keys in HEAP tables
      sql/sql_insert.cc:
        Update for BTREE keys in HEAP tables
      sql/sql_select.cc:
        Update for BTREE keys in HEAP tables
      sql/sql_show.cc:
        Update for BTREE keys in HEAP tables
      sql/sql_table.cc:
        Update for BTREE keys in HEAP tables
      sql/structs.h:
        Update for BTREE keys in HEAP tables
      sql/table.cc:
        Update for BTREE keys in HEAP tables
      sql/unireg.cc:
        Update for BTREE keys in HEAP tables
      6326ec99
  20. 12 Jan, 2002 1 commit
    • unknown's avatar
      Added support of null keys in HEAP tables · 71a5af5b
      unknown authored
      Added ORDER BY optimization
      
      
      Docs/manual.texi:
        Added ORDER BY optimisation section
      heap/_check.c:
        Cleanup
      heap/heapdef.h:
        Added support of null keys in HEAP tables
      heap/hp_hash.c:
        Added support of null keys in HEAP tables
      heap/hp_open.c:
        Added support of null keys in HEAP tables
      heap/hp_test2.c:
        Added support of null keys in HEAP tables
      heap/hp_write.c:
        Added support of null keys in HEAP tables
      include/heap.h:
        Added support of null keys in HEAP tables
      include/my_base.h:
        Support for hash algoritm
      isam/static.c:
        Cleanup
      myisam/mi_static.c:
        Cleanup
      sql/Makefile.am:
        Rename innobase -> innodb
      sql/ha_berkeley.cc:
        Added ORDER BY optimization
      sql/ha_berkeley.h:
        Added ORDER BY optimization
      sql/ha_heap.cc:
        Added support for NULL keys
      sql/ha_heap.h:
        Added support for NULL keys
      sql/ha_isam.cc:
        Added ORDER BY optimization
      sql/ha_isam.h:
        Added ORDER BY optimization
      sql/ha_isammrg.h:
        Added ORDER BY optimization
      sql/ha_myisam.cc:
        Added ORDER BY optimization
      sql/ha_myisam.h:
        Added ORDER BY optimization
      sql/ha_myisammrg.cc:
        Added ORDER BY optimization
      sql/ha_myisammrg.h:
        Added ORDER BY optimization
      sql/handler.cc:
        Rename innobase -> innodb
      sql/handler.h:
        Rename innobase -> innodb
      sql/ha_innodb.cc:
        Rename innobase -> innodb
      sql/ha_innodb.h:
        Rename innobase -> innodb
      sql/mysqld.cc:
        Rename innobase -> innodb
      sql/sql_delete.cc:
        Rename innobase -> innodb
      sql/sql_select.cc:
        Added ORDER BY optimization
      sql/sql_select.h:
        Added ORDER BY optimization
      71a5af5b
  21. 02 Jan, 2002 1 commit
    • unknown's avatar
      Added macros for nice TIMESPEC usage. · f4fee3d9
      unknown authored
      Fixes for building MySQL with gcc 3.0
      Added SIGNED / UNSIGNED casts
      Fixed core dump bug in net_clear() with libmysqld.
      Back to using semaphores in query cache.
      Added 'Null' and 'Index_type' to SHOW INDEX.
      
      
      BUILD/FINISH.sh:
        Fixes for gcc 3.0
      BUILD/SETUP.sh:
        Fixes for gcc 3.0
      Docs/manual.texi:
        Changelog + SIGNED/UNSIGNED casts.
      Makefile.am:
        include BUILD scripts in source distribution.
      client/Makefile.am:
        Fixes for gcc 3.0
      client/mysql.cc:
        Cleanup
      client/mysqldump.c:
        Changed 'K' to mean 'disable-keys' instead of 'no-disabled-keys'
      client/readline.cc:
        Cleanup
      configure.in:
        Include BUILD in source distrbution
      extra/my_print_defaults.c:
        Cleanup
      include/my_global.h:
        Fix for HPUX and setrlimit.
        Portability fix.
        Added macros for nice TIMESPEC usage.
      innobase/include/dyn0dyn.h:
        Fix for AIX
      libmysql/Makefile.shared:
        Added strxmov to libmysqld
      libmysqld/examples/Makefile.am:
        Fixes for gcc 3.0
      libmysqld/lib_vio.c:
        Cleanup
      myisam/ft_dump.c:
        Portability fixes
      myisam/ftdefs.h:
        Portability fixes
      mysql-test/r/bdb.result:
        Cleanup results after adding 2 columns to SHOW KEYS
      mysql-test/r/bigint.result:
        New test for SIGNED/UNSIGNED
      mysql-test/r/fulltext.result:
        Cleanup results after adding 2 columns to SHOW KEYS
      mysql-test/r/heap.result:
        Cleanup results after adding 2 columns to SHOW KEYS
      mysql-test/r/innodb.result:
        Cleanup results after adding 2 columns to SHOW KEYS
      mysql-test/r/isam.result:
        Cleanup results after adding 2 columns to SHOW KEYS
      mysql-test/r/key.result:
        Cleanup results after adding 2 columns to SHOW KEYS
      mysql-test/r/myisam.result:
        Cleanup results after adding 2 columns to SHOW KEYS
      mysql-test/r/query_cache.result:
        Cleanup results after adding 2 columns to SHOW KEYS
      mysql-test/r/select.result:
        Cleanup results after adding 2 columns to SHOW KEYS
      mysql-test/r/show_check.result:
        Cleanup results after adding 2 columns to SHOW KEYS
      mysql-test/r/type_ranges.result:
        Cleanup results after adding 2 columns to SHOW KEYS
      mysql-test/t/bigint.test:
        New test for SIGNED/UNSIGNED
      mysql-test/t/key.test:
        New test for SIGNED/UNSIGNED
      mysql-test/t/query_cache.test:
        Test for FOUND_ROWS()
      sql-bench/crash-me.sh:
        Safety fixes
      sql/derror.cc:
        Cleanup
      sql/ha_berkeley.h:
        New test for SIGNED/UNSIGNED
      sql/ha_heap.h:
        New test for SIGNED/UNSIGNED
      sql/ha_innobase.cc:
        New test for SIGNED/UNSIGNED
      sql/ha_innobase.h:
        New test for SIGNED/UNSIGNED
      sql/ha_isam.h:
        New test for SIGNED/UNSIGNED
      sql/ha_myisam.cc:
        New test for SIGNED/UNSIGNED
      sql/ha_myisam.h:
        New test for SIGNED/UNSIGNED
      sql/handler.h:
        New test for SIGNED/UNSIGNED
      sql/item_func.cc:
        Cleanup TIMESPEC usage
      sql/item_func.h:
        Added SIGNED / UNSIGNED casts
      sql/lex.h:
        Added SIGNED / UNSIGNED casts
      sql/mysqld.cc:
        Cleanup TIMESPEC usage
      sql/net_pkg.cc:
        Cleanup
      sql/net_serv.cc:
        Fixed core dump bug in net_clear()
      sql/slave.cc:
        Cleanup
      sql/sql_cache.cc:
        Back to using semaphores
      sql/sql_cache.h:
        Back to using semaphores
      sql/sql_insert.cc:
        Cleanup TIMESPEC usage
      sql/sql_manager.cc:
        Cleanup TIMESPEC usage
      sql/sql_parse.cc:
        Cleanup
      sql/sql_repl.cc:
        Cleanup TIMESPEC usage
      sql/sql_show.cc:
        Added 'Null' and 'Index_type' to SHOW INDEX.
      sql/sql_table.cc:
        Sort keys in table in a more logical order.
      sql/sql_yacc.yy:
        Support for SIGNED/UNSIGNED casts.
      f4fee3d9
  22. 21 Dec, 2001 1 commit
    • unknown's avatar
      HANDLER works only with MyISAM tables · ad24c890
      unknown authored
      HA_NO_FULLTEXT_KEY property -> HA_CAN_FULLTEXT
      
      
      sql/ha_berkeley.h:
        HA_NO_FULLTEXT_KEY property -> HA_CAN_FULLTEXT
      sql/ha_heap.h:
        HA_NO_FULLTEXT_KEY property -> HA_CAN_FULLTEXT
      sql/ha_innobase.h:
        HA_NO_FULLTEXT_KEY property -> HA_CAN_FULLTEXT
      sql/ha_isam.h:
        HA_NO_FULLTEXT_KEY property -> HA_CAN_FULLTEXT
      sql/ha_isammrg.h:
        HA_NO_FULLTEXT_KEY property -> HA_CAN_FULLTEXT
      sql/ha_myisammrg.h:
        HA_NO_FULLTEXT_KEY property -> HA_CAN_FULLTEXT
      sql/sql_handler.cc:
        HANDLER works only with MyISAM tables
      sql/sql_table.cc:
        HA_NO_FULLTEXT_KEY property -> HA_CAN_FULLTEXT
      ad24c890
  23. 09 Oct, 2001 1 commit
    • unknown's avatar
      Boolean search passes _some_ tests · 736e5b0d
      unknown authored
      sql/ha_myisam.cc:
        One more abstraction layer added (C++ emulated in C :).
      include/ft_global.h:
        boolean search code plugged in
      mysql-test/r/fulltext_cache.result:
        boolean search code plugged in
      mysql-test/r/fulltext_left_join.result:
        boolean search code plugged in
      mysql-test/r/fulltext_multi.result:
        boolean search code plugged in
      mysql-test/r/fulltext_order_by.result:
        boolean search code plugged in
      sql/lex.h:
        IN BOOLEAN MODE syntax
      myisam/ft_nlq_search.c:
        boolean search code plugged in
      myisam/ftdefs.h:
        boolean search code plugged in
      sql/ha_myisam.h:
        boolean search code plugged in
      sql/handler.h:
        boolean search code plugged in
      include/my_base.h:
        do_not_sort_keyseg feature for MyISAM
      include/my_global.h:
        #define comp(a,b) (((a) < (b)) ? -1 : ((a) > (b)) ? 1 : 0)
      myisam/ft_boolean_search.c:
        bugfixing
      myisam/ft_parser.c:
        cleanup
      myisam/ft_static.c:
        do_not_sort_keyseg feature for MyISAM
      myisam/mi_search.c:
        do_not_sort_keyseg feature for MyISAM
      myisam/mi_write.c:
        cleanup
      mysql-test/t/fulltext.test:
        boolean search tests added
      BitKeeper/etc/ignore:
        Added myisam/FT1.MYD myisam/FT1.MYI to the ignore list
      sql/item_func.cc:
        boolean search
      sql/item_func.h:
        boolean search
      sql/sql_yacc.yy:
        boolean search
      736e5b0d
  24. 25 Sep, 2001 1 commit
    • unknown's avatar
      get rid of ft_search. Now there're two sets of ft_ functions, ft_nlq_* and ft_boolean_* · 734e2a8b
      unknown authored
      BitKeeper/deleted/.del-ft_search.c~c011cb6e8041bb59:
        Delete: myisam/ft_search.c
      include/ft_global.h:
        ft_ --> ft_nlq_
      myisam/Makefile.am:
        get rid of ft_search.c
      myisam/ft_dump.c:
        ft_ --> ft_nlq_
      myisam/ft_eval.c:
        ft_ --> ft_nlq_
      myisam/ft_nlq_search.c:
        get rid of ft_search.c
      myisam/ft_test1.c:
        ft_ --> ft_nlq_
      sql/ha_myisam.cc:
        ft_ --> ft_nlq_
      sql/ha_myisam.h:
        ft_ --> ft_nlq_
      sql/handler.h:
        cleanup
      sql/item_func.cc:
        ft_ --> ft_nlq_
      sql/item_func.h:
        ft_ --> ft_nlq_
      sql/item_strfunc.h:
        cleanup
      734e2a8b
  25. 11 Jul, 2001 1 commit
    • unknown's avatar
      Added back old code that Sasha removed · 961cd9e9
      unknown authored
      mysql-test/r/show_check.result:
        Added back old code
      sql/ha_myisam.h:
        Removed warning
      sql/mysql_priv.h:
        Added back old code
      sql/sql_base.cc:
        Added back old code
      sql/sql_parse.cc:
        Added back old code
      sql/sql_show.cc:
        Added back old code
      961cd9e9
  26. 01 Jun, 2001 1 commit
    • unknown's avatar
      Added support for symlinked tables. · e59d0778
      unknown authored
      myisamchk: Don't force a repair if the only problem was that the
      open count wasn't correct.
      Added missing error messages.
      
      
      include/my_sys.h:
        Cleanup comments
      libmysql/Makefile.shared:
        Added symlink library.
      myisam/mi_check.c:
        Added support for symlinked tables
      myisam/mi_delete_table.c:
        Added support for symlinked tables
      myisam/mi_open.c:
        Added support for symlinked tables
      myisam/mi_rename.c:
        Added support for symlinked tables
      myisam/myisamchk.c:
        Added support for symlinked tables.
        Don't force a repair if the only problem was that the open count
        wasn't correct.
      pstack/bucomm.c:
        use mkstemp() instead of mytemp()
      sql/ha_myisam.cc:
        Added support for symlinked tables
      sql/ha_myisam.h:
        Added support for symlinked tables
      sql/ha_myisammrg.cc:
        Added support for symlinked tables
      sql/handler.cc:
        Added support for symlinked tables
      sql/handler.h:
        Added support for symlinked tables
      sql/lex.h:
        Added support for symlinked tables
      sql/share/czech/errmsg.txt:
        Added missing error messages
      sql/share/danish/errmsg.txt:
        Added missing error messages
      sql/share/dutch/errmsg.txt:
        Added missing error messages
      sql/share/estonian/errmsg.txt:
        Added missing error messages
      sql/share/french/errmsg.txt:
        Added missing error messages
      sql/share/german/errmsg.txt:
        Added missing error messages
      sql/share/greek/errmsg.txt:
        Added missing error messages
      sql/share/hungarian/errmsg.txt:
        Added missing error messages
      sql/share/italian/errmsg.txt:
        Added missing error messages
      sql/share/japanese/errmsg.txt:
        Added missing error messages
      sql/share/korean/errmsg.txt:
        Added missing error messages
      sql/share/norwegian-ny/errmsg.txt:
        Added missing error messages
      sql/share/norwegian/errmsg.txt:
        Added missing error messages
      sql/share/polish/errmsg.txt:
        Added missing error messages
      sql/share/portuguese/errmsg.txt:
        Added missing error messages
      sql/share/romanian/errmsg.txt:
        Added missing error messages
      sql/share/russian/errmsg.txt:
        Added missing error messages
      sql/share/slovak/errmsg.txt:
        Added missing error messages
      sql/share/spanish/errmsg.txt:
        Added missing error messages
      sql/share/swedish/errmsg.OLD:
        Added missing error messages
      sql/share/swedish/errmsg.txt:
        Added missing error messages
      sql/sql_db.cc:
        Added support for symlinked tables
      sql/sql_parse.cc:
        Added support for symlinked tables
      sql/sql_table.cc:
        Added support for symlinked tables with ALTER TABLE
      sql/sql_yacc.yy:
        Added option to create symlinked tables.
      e59d0778
  27. 24 May, 2001 1 commit
    • unknown's avatar
      ALTER TABLE ... DISABLE/ENABLE KEYS, code cleanup · 1c8902e4
      unknown authored
      myisam/ft_boolean_search.c:
        qsort_cmp -> qsort_cmp2
      myisam/mi_extra.c:
        ALTER TABLE ... ENABLE/DISABLE KEYS
        mi_extra(HA_EXTRA_NO_KEYS) disables only only non-unique keys
      myisam/myisamlog.c:
        qsort_cmp -> qsort_cmp2
      sql/ha_myisam.cc:
        ALTER TABLE ENABLE/DISABLE KEYS
        deactivate_non_unique_index(HA_POS_ERROR) to force deactivation
      sql/ha_myisam.h:
        ALTER TABLE ... DISABLE/ENABLE KEYS
      sql/sql_table.cc:
        ALTER TABLE ... DISABLE/ENABLE KEYS
      1c8902e4
  28. 19 Jan, 2001 1 commit
    • unknown's avatar
      ha_myisam.cc magic removed · 2f499141
      unknown authored
      ha_myisam.h	magic removed
      
      
      sql/ha_myisam.h:
        magic removed
      sql/ha_myisam.cc:
        magic removed
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      2f499141
  29. 28 Nov, 2000 1 commit
    • unknown's avatar
      errmsg.txt translated · b865c72a
      unknown authored
      opt_range.h	bugs with const_tables and filesort fixed
      opt_range.cc	bugs with const_tables and filesort fixed
      item_func.cc	bugs with const_tables and filesort fixed
      ha_myisam.h	bugs with const_tables and filesort fixed
      ha_myisam.cc	bugs with const_tables and filesort fixed
      ft_search.c	bugs with const_tables and filesort fixed
      
      
      myisam/ft_search.c:
        bugs with const_tables and filesort fixed
      sql/ha_myisam.cc:
        bugs with const_tables and filesort fixed
      sql/ha_myisam.h:
        bugs with const_tables and filesort fixed
      sql/item_func.cc:
        bugs with const_tables and filesort fixed
      sql/opt_range.cc:
        bugs with const_tables and filesort fixed
      sql/opt_range.h:
        bugs with const_tables and filesort fixed
      sql/share/russian/errmsg.txt:
        translated
      b865c72a
  30. 02 Nov, 2000 1 commit
    • unknown's avatar
      Ill-minded FULLTEXT impilict initialization hack removed. · e735267f
      unknown authored
      From now on FULLTEXT search is initialized expilictly in mysql_select()
      
      
      sql/item_func.cc:
        FULLTEXT expilict initialization
      sql/opt_ft.h:
        FULLTEXT expilict initialization
      sql/opt_range.h:
        FULLTEXT expilict initialization
      sql/ha_myisam.cc:
        FULLTEXT expilict initialization
      sql/ha_myisam.h:
        FULLTEXT expilict initialization
      sql/handler.h:
        FULLTEXT expilict initialization
      sql/item_func.h:
        FULLTEXT expilict initialization
      sql/sql_select.cc:
        FULLTEXT expilict initialization
      myisam/ft_search.c:
        FULLTEXT expilict initialization
      e735267f
  31. 16 Oct, 2000 1 commit
    • unknown's avatar
      Automatic repair of MyISAM tables + small bug fixes · 0c511215
      unknown authored
      Docs/manual.texi:
        Updates for 3.23.26
      include/Makefile.am:
        Install my_config.h
      include/my_pthread.h:
        Fix for Ia64
      myisam/mi_check.c:
        Wrong new record pos on dupplicate key error
      myisam/mi_open.c:
        Fix for automatic repair
      myisam/myisamchk.c:
        Fix for automatic repair
      myisam/myisamdef.h:
        Fix for automatic repair
      mysys/mf_tempfile.c:
        Fix usage of mkstemp
      sql-bench/bench-init.pl.sh:
        Better help text
      sql-bench/test-insert.sh:
        Fix for slow databases
      sql/field.cc:
        Fix of default values for CREATE TABLE ... SELECT
      sql/ha_berkeley.cc:
        Fix bug in BDB records_in_range
      sql/ha_myisam.cc:
        Fix for automatic repair
      sql/ha_myisam.h:
        Fix for automatic repair
      sql/handler.cc:
        Fixes for innobase
      sql/item_strfunc.cc:
        Fix for SUBSTR_INDEX and REPLACE
      sql/log_event.h:
        Portability fix
      sql/mysqld.cc:
        Added INNOBASE and fixes for automatic recover of MyISAM tables
      sql/sql_base.cc:
        Fix for automatic repair
      sql/sql_table.cc:
        Fix for IF EXISTS when used with CREATE TEMPORARY
      0c511215
  32. 10 Oct, 2000 1 commit
    • unknown's avatar
      Automatic repair of MyISAM tables + portability fixes · da536688
      unknown authored
      Docs/manual.texi:
        Changes for 3.23 and change Ansi mode -> ANSI mode
      include/my_base.h:
        Automatic repair of MyISAM tables
      include/myisam.h:
        Automatic repair of MyISAM tables
      myisam/ft_update.c:
        Portability fix
      myisam/mi_check.c:
        Automatic repair of MyISAM tables
      myisam/mi_open.c:
        Automatic repair of MyISAM tables
      myisam/myisamchk.c:
        Allow one to combine check with --old-repair
      myisam/sort.c:
        Fix for usage of IO_CACHE
      mysys/charset.c:
        Portability fixes
      mysys/default.c:
        Added --defaults-extra-dir
      mysys/mf_tempfile.c:
        Portability fixes
      mysys/my_init.c:
        Remove compiler warning
      mysys/my_pread.c:
        Remove compiler warning
      sql-bench/server-cfg.sh:
        New benchmark tests
      sql-bench/test-insert.sh:
        New benchmark tests
      sql/ha_myisam.cc:
        Automatic repair of MyISAM tables
      sql/ha_myisam.h:
        Automatic repair of MyISAM tables
      sql/handler.h:
        Automatic repair of MyISAM tables
      sql/lock.cc:
        Add missing free
      sql/log_event.cc:
        Portability fixes
      sql/sql_base.cc:
        Automatic repair of MyISAM tables
      sql/sql_select.h:
        Remove compiler warning
      sql/sql_table.cc:
        Clean up intendent
      sql/sql_yacc.yy:
        New syntax for CHECK
      sql/table.cc:
        Automatic repair of MyISAM tables
      sql/table.h:
        Automatic repair of MyISAM tables
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      da536688
  33. 03 Oct, 2000 1 commit
    • unknown's avatar
      First part of automatic repair of MyISAM tables. · 63b7b45f
      unknown authored
      Error on full disk on repair.
      SIGHUP signal handling.
      Update with keys on timestamp
      Portability fixes
      
      
      Docs/manual.texi:
        Added documentation about automatic repair of MyISAM tables
      client/mysql.cc:
        Remove usage of tempnam.
      include/my_sys.h:
        Added create_temp_file
      include/myisam.h:
        Fix for disk full on repair
      myisam/mi_check.c:
        Fix for disk full on repair
      myisam/sort.c:
        Fix for disk full on repair & removed usage of tempnam()
      mysys/mf_cache.c:
        Remove usage of tempnam()
      mysys/mf_dirname.c:
        Changed convert_dirname to return end 0
      mysys/my_fopen.c:
        Security fixes
      mysys/my_tempnam.c:
        remove blanks
      readline/bind.c:
        Portability fixes
      readline/complete.c:
        Portability fixes
      readline/histexpand.c:
        Portability fixes
      readline/input.c:
        Portability fixes
      readline/search.c:
        Portability fixes
      readline/shell.c:
        Portability fixes
      readline/terminal.c:
        Portability fixes
      readline/tilde.c:
        Portability fixes
      readline/undo.c:
        Portability fixes
      regex/cname.h:
        Portability fixes
      regex/debug.c:
        Portability fixes
      regex/main.c:
        Portability fixes
      regex/regcomp.c:
        Portability fixes
      regex/regerror.c:
        Portability fixes
      sql/filesort.cc:
        Remove dummy code
      sql/ha_myisam.cc:
        Automatic repair of MyISAM tables
      sql/ha_myisam.h:
        Automatic repair of MyISAM tables
      sql/handler.cc:
        Automatic repair of MyISAM tables
      sql/handler.h:
        Automatic repair of MyISAM tables
      sql/key.cc:
        Fix for UPDATE with key on timestamp column
      sql/mysql_priv.h:
        Automatic repair of MyISAM tables
      sql/mysqld.cc:
        Automatic repair of MyISAM tables & signal SIGHUP handling
      sql/sql_base.cc:
        Automatic repair of MyISAM tables
      sql/sql_class.cc:
        Automatic repair of MyISAM tables
      sql/sql_class.h:
        Fix for insert with reference to columns
      sql/sql_insert.cc:
        Fix for insert with reference to columns
      sql/table.cc:
        Automatic repair of MyISAM tables
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      63b7b45f
  34. 25 Sep, 2000 1 commit
    • unknown's avatar
      RIGHT JOIN, part of automatic repair of MyISAM tables, backup on repair, · 7fe58c4f
      unknown authored
      reading from FIFO, fixes for FULLTEXT, @@IDENTITY
      
      
      Docs/manual.texi:
        Update of RIGHT JOIN
      client/mysql.cc:
        Faster HTML generation
      extra/perror.c:
        Added MyISAM error messages
      include/my_base.h:
        Update for automatic repair of MyISAM tables
      include/my_sys.h:
        Backup files and FIFO
      include/myisam.h:
        Automatic repair and backup files
      include/mysqld_error.h:
        New error message
      myisam/mi_check.c:
        Update for automatic repair of MyISAM tables
      myisam/mi_locking.c:
        Fixed comment
      myisam/mi_open.c:
        Update for automatic repair of MyISAM tables
      myisam/myisamchk.c:
        Update for automatic repair of MyISAM tables
      myisam/myisamdef.h:
        Update for automatic repair of MyISAM tables
      mysys/mf_getdate.c:
        Added new parameter option for backup files
      mysys/my_open.c:
        Added debug information
      mysys/my_redel.c:
        Backup file handling
      sql/ha_berkeley.cc:
        Updated interface
      sql/ha_berkeley.h:
        Updated interface
      sql/ha_heap.cc:
        Updated interface
      sql/ha_heap.h:
        Updated interface
      sql/ha_isam.cc:
        Updated interface
      sql/ha_isam.h:
        Updated interface
      sql/ha_isammrg.cc:
        Updated interface
      sql/ha_isammrg.h:
        Updated interface
      sql/ha_myisam.cc:
        Update for automatic repair of MyISAM tables
      sql/ha_myisam.h:
        Updated interface
      sql/ha_myisammrg.cc:
        Updated interface
      sql/ha_myisammrg.h:
        Updated interface
      sql/handler.h:
        Updated interface
      sql/item.h:
        Added @@identity
      sql/item_func.cc:
        Added @@identity
      sql/lex.h:
        Added RIGHT JOIN
      sql/mf_iocache.cc:
        Update for reading from FIFO
      sql/mysqld.cc:
        Update for automatic repair of MyISAM tables
      sql/share/czech/errmsg.sys:
        Added @@identity
      sql/share/czech/errmsg.txt:
        Added @@identity
      sql/share/danish/errmsg.sys:
        Added @@identity
      sql/share/danish/errmsg.txt:
        Added @@identity
      sql/share/dutch/errmsg.sys:
        Added @@identity
      sql/share/dutch/errmsg.txt:
        Added @@identity
      sql/share/english/errmsg.sys:
        Added @@identity
      sql/share/english/errmsg.txt:
        Added @@identity
      sql/share/estonian/errmsg.sys:
        Added @@identity
      sql/share/estonian/errmsg.txt:
        Added @@identity
      sql/share/french/errmsg.sys:
        Added @@identity
      sql/share/french/errmsg.txt:
        Added @@identity
      sql/share/german/errmsg.sys:
        Added @@identity
      sql/share/german/errmsg.txt:
        Added @@identity
      sql/share/greek/errmsg.sys:
        Added @@identity
      sql/share/greek/errmsg.txt:
        Added @@identity
      sql/share/hungarian/errmsg.sys:
        Added @@identity
      sql/share/hungarian/errmsg.txt:
        Added @@identity
      sql/share/italian/errmsg.sys:
        Added @@identity
      sql/share/italian/errmsg.txt:
        Added @@identity
      sql/share/japanese/errmsg.sys:
        Added @@identity
      sql/share/japanese/errmsg.txt:
        Added @@identity
      sql/share/korean/errmsg.sys:
        Added @@identity
      sql/share/korean/errmsg.txt:
        Added @@identity
      sql/share/norwegian-ny/errmsg.txt:
        Added @@identity
      sql/share/norwegian/errmsg.txt:
        Added @@identity
      sql/share/polish/errmsg.sys:
        Added @@identity
      sql/share/polish/errmsg.txt:
        Added @@identity
      sql/share/portuguese/errmsg.sys:
        Added @@identity
      sql/share/portuguese/errmsg.txt:
        Added @@identity
      sql/share/romanian/errmsg.txt:
        Added @@identity
      sql/share/russian/errmsg.sys:
        Added @@identity
      sql/share/russian/errmsg.txt:
        Added @@identity
      sql/share/slovak/errmsg.sys:
        Added @@identity
      sql/share/slovak/errmsg.txt:
        Added @@identity
      sql/share/spanish/errmsg.sys:
        Added @@identity
      sql/share/spanish/errmsg.txt:
        Added @@identity
      sql/share/swedish/errmsg.OLD:
        Added @@identity
      sql/share/swedish/errmsg.sys:
        Added @@identity
      sql/share/swedish/errmsg.txt:
        Added @@identity
      sql/sql_base.cc:
        Fix for RIGHT JOIN
      sql/sql_db.cc:
        Update for automatic repair of MyISAM tables
      sql/sql_load.cc:
        Added reading from FIFO
      sql/sql_parse.cc:
        Fix for RIGHT JOIN
      sql/sql_select.cc:
        Fix for RIGHT JOIN
      sql/sql_table.cc:
        cleanup
      sql/sql_yacc.yy:
        Added RIGHT JOIN
      sql/table.cc:
        Fix handling of FULLTEXT index
      sql/table.h:
        Added RIGHT JOIN
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      7fe58c4f
  35. 14 Sep, 2000 1 commit
    • unknown's avatar
      BACKUP TABLE TO 'directory' · 2fdcf82e
      unknown authored
      RESTORE TABLE FROM 'directory'
      log on slave when it connects to the master
      
      
      include/mysql_com.h:
        Added COM_CONNECT_OUT so we can log on the slave when 
        connects to the master
      sql/ha_myisam.cc:
        added restore() and backup()
      sql/ha_myisam.h:
        Added restore() and backup()
      sql/handler.cc:
        restore()/backup()
      sql/handler.h:
        restore()/backup()
      sql/lex.h:
        BACKUP/RESTORE
      sql/mysql_priv.h:
        gave global ( non-static) scope to generate_table()
        added mysql_backup_table()/mysql_restore_table()
      sql/slave.cc:
        Log when slave connects to the master on the slave
      sql/sql_delete.cc:
        changed the scope of generate_table() from static to global
      sql/sql_lex.h:
        changes for BACKUP TABLE/RESTORE TABLE
      sql/sql_parse.cc:
        Changes for BACKUP TABLE/RESTORE TABLE
      sql/sql_table.cc:
        Changes for BACKUP TABLE/RESTORE TABLE
      sql/sql_yacc.yy:
        BACKUP TABLE/ RESTORE TABLE
      2fdcf82e
  36. 13 Sep, 2000 1 commit
    • unknown's avatar
      Fixes for MERGE TABLES and HEAP tables · d5964ba2
      unknown authored
      Docs/manual.texi:
        Updated MERGE table stuff + more
      extra/perror.c:
        Added missing error messages
      include/myisammrg.h:
        Fixes for MERGE TABLE
      include/queues.h:
        Fixes for MERGE TABLE
      isam/isamlog.c:
        Fixed hard bug
      myisam/mi_log.c:
        cleanup
      myisam/mi_open.c:
        Fixed file name format in myisam log
      myisam/myisamlog.c:
        Bug fixes
      myisammrg/mymrgdef.h:
        Fixes for MERGE TABLE
      myisammrg/myrg_create.c:
        Fixes for MERGE TABLE
      myisammrg/myrg_open.c:
        Fixes for MERGE TABLE
      myisammrg/myrg_queue.c:
        Fixes for MERGE TABLE
      myisammrg/myrg_rfirst.c:
        Fixes for MERGE TABLE
      myisammrg/myrg_rkey.c:
        Fixes for MERGE TABLE
      myisammrg/myrg_rlast.c:
        Fixes for MERGE TABLE
      myisammrg/myrg_rnext.c:
        Fixes for MERGE TABLE
      myisammrg/myrg_rprev.c:
        Fixes for MERGE TABLE
      myisammrg/myrg_rrnd.c:
        Fixes for MERGE TABLE
      mysql.proj:
        update
      mysys/queues.c:
        Fixed bug when using reverse queues
      sql-bench/test-insert.sh:
        Separated some things to get better timings
      sql/ha_heap.cc:
        Fixed heap table bug
      sql/ha_heap.h:
        Fixed heap table bug
      sql/ha_myisam.h:
        Fixed wrong max_keys
      sql/ha_myisammrg.cc:
        Fixed MERGE TABLES
      sql/ha_myisammrg.h:
        Fixed MERGE TABLES
      sql/handler.h:
        Fix for MERGE TABLES and HEAP tables
      sql/lex.h:
        Fixed MERGE TABLES
      sql/mysql_priv.h:
        Cleanup of code
      sql/sql_acl.cc:
        Fixed that privilege tables are flushed at start
      sql/sql_lex.h:
        Fixed MERGE TABLES
      sql/sql_parse.cc:
        Fixed MERGE TABLES
      sql/sql_select.cc:
        Fixes for HEAP tables
      sql/sql_table.cc:
        Cleanup
      sql/sql_yacc.yy:
        Fixed MERGE TABLES
      d5964ba2
  37. 12 Sep, 2000 1 commit
    • unknown's avatar
      Update to new root alloc, OPTIMIZE TABLE and some other changes · fe4cccd6
      unknown authored
      Docs/manual.texi:
        Added chapter for binary log, updated the changelog, linux section, OPTIMIZE TABLE...
      client/mysqladmin.c:
        Fixed bug with pid-file handling.
      client/mysqldump.c:
        Version change
      configure.in:
        Version change
      include/Makefile.am:
        Fix for SCO to get sched.h removed.
      include/global.h:
        Increased MY_NFILE;  Added thread_safe_increment
      include/my_sys.h:
        Better root_alloc
      include/mysql.h:
        Better root_alloc
      include/mysys_err.h:
        Fix for PREAD/PWRITE on windows
      libmysql/libmysql.c:
        Better root_alloc
      myisam/mi_locking.c:
        Fix for PREAD/PWRITE on windows
      myisam/mi_static.c:
        Fix for PREAD/PWRITE on windows
      mysys/default.c:
        Better root_alloc
      mysys/errors.c:
        Fix for PREAD/PWRITE on windows
      mysys/my_alloc.c:
        Better root_alloc
      mysys/my_create.c:
        Fix for PREAD/PWRITE on windows
      mysys/my_fopen.c:
        Fix for PREAD/PWRITE on windows
      mysys/my_open.c:
        Fix for PREAD/PWRITE on windows
      mysys/my_pread.c:
        Fix for PREAD/PWRITE on windows
      mysys/tree.c:
        Better root_alloc
      readline/bind.c:
        Removed compiler warning
      readline/isearch.c:
        Removed compiler warning
      scripts/safe_mysqld.sh:
        Allow use of MYSQL_UNIX_PORT and MYSQL_TCP_PORT
      sql-bench/crash-me.sh:
        Version change
      sql-bench/limits/mysql-3.23.cfg:
        Update to latest MySQL version
      sql/filesort.cc:
        Added more statistics
      sql/ha_berkeley.h:
        Fixed bug with ORDER BY
      sql/ha_myisam.cc:
        Added OPTIMIZE TABLE and cleaned up the repair code
      sql/ha_myisam.h:
        Added OPTIMIZE TABLE and cleaned up the repair code
      sql/handler.cc:
        Added OPTIMIZE TABLE and cleaned up the repair code
      sql/handler.h:
        Added OPTIMIZE TABLE and cleaned up the repair code
      sql/item_func.cc:
        Fixed comment
      sql/item_timefunc.cc:
        Fixed possible month bug
      sql/mini_client.cc:
        Use of new root_alloc
      sql/mysql_priv.h:
        Added OPTIMIZE TABLE and cleaned up the repair code
      sql/mysqld.cc:
        Added more statistics
      sql/opt_range.cc:
        Use of new root_alloc
      sql/slave.cc:
        Use of new root_alloc
      sql/sql_acl.cc:
        Use of new root_alloc
      sql/sql_class.cc:
        Use of new root_alloc
      sql/sql_parse.cc:
        Use of new root_alloc
      sql/sql_select.cc:
        Added more statistics
      sql/sql_table.cc:
        Added OPTIMIZE TABLE and cleaned up the repair code
      sql/sql_udf.cc:
        Use of new root_alloc
      sql/sql_yacc.yy:
        Fixed that OPTIMIZE TABLE can take many tables as arguments
      sql/table.cc:
        Use of new root_alloc
      sql/thr_malloc.cc:
        Use of new root_alloc
      support-files/mysql.server.sh:
        Removed usage of AWK
      fe4cccd6
  38. 17 Aug, 2000 1 commit
    • unknown's avatar
      Many MATCH'es per query now allowed (i.e. AND's and OR's now work, but · f02d7772
      unknown authored
      slow - full table scan); ORDER BY now works with MATCH (slow, full table
      scan)
      
      
      myisam/ft_eval.c:
        ft_read_next compatibility
      myisam/ft_test1.c:
        ft_read_next compatibility
      include/ft_global.h:
        ft_read_next redesigned, ft_get_relevance introduced
      sql/ha_myisam.cc:
        Many MATCH'es per query now allowed
      sql/ha_myisam.h:
        Many MATCH'es per query now allowed
      sql/handler.h:
        Many MATCH'es per query now allowed
      sql/item_func.cc:
        Many MATCH'es per query now allowed
      sql/item_func.h:
        Many MATCH'es per query now allowed
      sql/sql_select.cc:
        Many MATCH'es per query now allowed
      myisam/ft_search.c:
        HA_KEY_NOT_FOUND => HA_END_OF_FILE
      f02d7772
  39. 15 Aug, 2000 1 commit
    • unknown's avatar
      Fixed for Ia64 + delayed key creation + a lot of small bug fixes · 8b3993bc
      unknown authored
      Docs/Makefile.am:
        Removed typo
      Docs/internals.texi:
        Added documentation about filesort
      Docs/manual.texi:
        Lots of changes, including information about the password in the mysql.user table
      config.h.in:
        ***MISSING WEAVE***
      heap/hp_rnext.c:
        Fix of reading of read-next
      include/config-win.h:
        Fix for Ia64
      include/global.h:
        Fix for Ia64
      include/my_base.h:
        Fix for Ia64
      include/myisam.h:
        New repair options
      isam/_dynrec.c:
        Typo fixes
      isam/_search.c:
        Fix for Ia64
      merge/rrnd.c:
        Fix of ORDER BY for MERGE tables
      myisam/ft_eval.c:
        Fix for Ia64
      myisam/ft_parser.c:
        Fix for Ia64
      myisam/ft_static.c:
        Portability fixes
      myisam/mi_check.c:
        Fix for Ia64 + delay key creation
      myisam/mi_locking.c:
        Portability fixes
      myisam/myisamdef.h:
        Fixes for automatic table repair
      myisam/myisampack.c:
        Version number increment
      myisammrg/myrg_rrnd.c:
        Fix of ORDER BY for mymerge tables
      mysql.proj:
        Updated
      mysys/charset.c:
        Fix for Ia64
      mysys/mf_casecnv.c:
        Fix for Ia64
      mysys/mf_pack.c:
        Fix for Ia64
      mysys/mf_path.c:
        Fix for Ia64
      mysys/mf_wfile.c:
        Fix for Ia64
      mysys/my_alloc.c:
        Fix for Ia64
      mysys/my_lib.c:
        Fix for Ia64
      mysys/my_lread.c:
        Fix for Ia64
      mysys/my_lwrite.c:
        Fix for Ia64
      mysys/my_winthread.c:
        Fix for Ia64
      mysys/string.c:
        Fix for Ia64
      mysys/thr_alarm.c:
        Fix for Ia64
      mysys/thr_rwlock.c:
        Fix of scheduler bug for systems without rw_locks
      regex/regcomp.c:
        Fix for Ia64
      regex/regex.h:
        Fix for Ia64
      regex/regex2.h:
        Fix for Ia64
      scripts/mysqlhotcopy.sh:
        Explicit version number (because of bitkeeper)
      sql-bench/bench-init.pl.sh:
        New help message
      sql-bench/server-cfg.sh:
        Updates for postgreSQL 7.0
      sql/ChangeLog:
        Changelog
      sql/field.cc:
        Fix of datetime function handling
      sql/filesort.cc:
        More comments
      sql/gen_lex_hash.cc:
        More options
      sql/ha_berkeley.cc:
        Fix for part key reading
      sql/ha_berkeley.h:
        Indentation
      sql/ha_myisam.cc:
        Fix for delayed key creation
      sql/ha_myisam.h:
        Fix for delayed key creation
      sql/handler.h:
        Fix for delayed key creation
      sql/item_func.cc:
        Fix of crash when using constant expression with UDF functions in WHERE
      sql/item_timefunc.cc:
        Fix of datetime function handling
      sql/mini_client.cc:
        Portability fix
      sql/mysql_priv.h:
        Optimization of select initialization
      sql/mysqld.cc:
        Portability fixes, thread cache and min argument for connect_timeout
      sql/sql_load.cc:
        Delayed key handling
      sql/sql_parse.cc:
        Portability fixes and select initialization optimization
      sql/sql_select.cc:
        Small optimization + more comments
      sql/sql_table.cc:
        Fix default value adding to blob with alter table + delayed index creation
      sql/sql_yacc.yy:
        Optimized select initialization
      sql/structs.h:
        Fix for part key read
      strings/ctype-sjis.c:
        Fix for Ia64
      strings/ctype-tis620.c:
        Fix for Ia64
      strings/t_ctype.h:
        bk fix
      support-files/mysql.spec.sh:
        Added comment
      vio/viotest-ssl.cc:
        bk fix
      vio/viotest-sslconnect.cc:
        bk fix
      vio/viotest.cc:
        bk fix
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      8b3993bc