1. 26 Mar, 2004 6 commits
  2. 25 Mar, 2004 21 commits
    • unknown's avatar
      Merge with 4.0 · 9fbb59ec
      unknown authored
      
      BitKeeper/etc/logging_ok:
        auto-union
      BitKeeper/deleted/.del-libmysql.def~f5dffcb3ed925d28:
        Auto merged
      BitKeeper/deleted/.del-post-incoming~9f2168f531f09f3b:
        Auto merged
      BitKeeper/deleted/.del-post-outgoing~1dd3d8f0f6e8f3cd:
        Auto merged
      VC++Files/innobase/innobase.dsp:
        Auto merged
      VC++Files/strings/MASM6x/strings.dsp:
        Auto merged
      client/mysqldump.c:
        Auto merged
      innobase/sync/sync0sync.c:
        Auto merged
      myisam/mi_check.c:
        Auto merged
      mysql-test/t/union.test:
        Auto merged
      mysql-test/t/update.test:
        Auto merged
      mysys/mf_iocache.c:
        Auto merged
      sql/nt_servc.cc:
        Auto merged
      mysql-test/r/system_mysql_db.result:
        Auto merged
      sql/sql_base.cc:
        Auto merged
      9fbb59ec
    • unknown's avatar
      Updated tests after merge · e27b3939
      unknown authored
      
      mysql-test/r/alter_table.result:
        Updated tests
      mysql-test/t/alter_table.test:
        Updated tests
      e27b3939
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1 · 719020af
      unknown authored
      into mysql.com:/home/my/mysql-4.1
      
      
      sql/item_func.cc:
        Auto merged
      sql/sql_base.cc:
        Auto merged
      sql/sql_union.cc:
        Auto merged
      719020af
    • unknown's avatar
      Cleanups & safety fixes · cf5e9e65
      unknown authored
      
      include/mysql.h:
        cleanup of load data infile patch
      libmysql/libmysql.c:
        cleanup of load data infile patch
      myisam/mi_search.c:
        Added missing assert.h
      mysql-test/r/func_time.result:
        Make test more secure
      mysql-test/t/func_time.test:
        Make test more secure
      sql/item.cc:
        restore to use str_value in item::save_in_field
      sql/item.h:
        Simple cleanup
      sql/item_cmpfunc.cc:
        Safety fix
      sql/item_cmpfunc.h:
        Simple optimization
      sql/item_func.cc:
        Updated comment
      sql/sql_base.cc:
        Simple optimization
      sql/sql_select.cc:
        Simple optimization
      sql/sql_union.cc:
        safey fixes
      cf5e9e65
    • unknown's avatar
      merge with 3.23 · 8ecaf213
      unknown authored
      
      BitKeeper/etc/logging_ok:
        auto-union
      scripts/mysqlbug.sh:
        Auto merged
      sql/sql_parse.cc:
        Auto merged
      mysql-test/t/alter_table.test:
        Merge code with 3.23
      sql/nt_servc.cc:
        use original code
      8ecaf213
    • unknown's avatar
      Improved test case · 3e712bfb
      unknown authored
      service backport from 4.0
      
      
      mysql-test/t/alter_table.test:
        Improved test case
      sql/nt_servc.cc:
        service backport from 4.0
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      3e712bfb
    • unknown's avatar
      Merge fix. · 34bcdab3
      unknown authored
      
      sql/sql_yacc.yy:
        Auto merged
      tests/client_test.c:
        Merge fix (two new test cases at the same time).
      34bcdab3
    • unknown's avatar
      Fixed BUG#3117: LAST_INSERT_ID() works incorrectly inside stored procedure. · addb7842
      unknown authored
      This turned out to be a problem for prepared statements as well; the id was
      evaluated once, at parse time.
      
      
      mysql-test/r/auto_increment.result:
        Updated results after bugfix in last_insert_id().
      mysql-test/r/query_cache.result:
        Updated results after bugfix in last_insert_id().
      mysql-test/r/variables.result:
        Updated results after bugfix in last_insert_id().
      sql/item_func.cc:
        Fixed bug in last_insert_id(); get id at each evaluation (and not in the parser).
        Renamed the class Item_func_set_last_insert_id too, since it's not only for setting.
      sql/item_func.h:
        Fixed bug in last_insert_id(); get id at each evaluation (and not in the parser).
        Renamed the class Item_func_set_last_insert_id too, since it's not only for setting.
      sql/sql_yacc.yy:
        Fixed bug in last_insert_id(); get id at each evaluation (and not in the parser).
        Renamed the class Item_func_set_last_insert_id too, since it's not only for setting.
      tests/client_test.c:
        Test case for last_insert_id() in prepared statements.
      addb7842
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1 · fe596dee
      unknown authored
      into mysql.com:/home/my/mysql-4.1
      
      
      myisam/mi_check.c:
        Auto merged
      sql/field.cc:
        Auto merged
      strings/ctype-sjis.c:
        Auto merged
      strings/ctype-ucs2.c:
        Auto merged
      fe596dee
    • unknown's avatar
      BTREE-indexes in HEAP tables can now be used to optimize ORDER BY · 887d6f14
      unknown authored
      Don't read character set files if we are using only the default charset. In most cases the user will not anymore get a warning about missing character set files
      Compare strings with space extend instead of space strip. Now the following comparisons holds:  "a" == "a " and "a\t" < "a". (Bug #3152).
      Note: Because of the above fix, one has to do a REPAIR on any table that has an ascii character < 32 last in a CHAR/VARCHAR/TEXT columns.
      
      
      heap/hp_hash.c:
        Comments and DBUG information
      include/my_handler.h:
        Updated prototype for mi_compare_text
      myisam/ft_boolean_search.c:
        Updated calls to mi_compare_text
      myisam/ft_nlq_search.c:
        Updated calls to mi_compare_text
      myisam/ft_parser.c:
        Updated calls to mi_compare_text
      myisam/ft_stopwords.c:
        Updated calls to mi_compare_text
      myisam/ft_update.c:
        Updated calls to mi_compare_text
      myisam/mi_check.c:
        Updated calls to mi_compare_text
      myisam/mi_search.c:
        Changed all string comparisons that removed end space to instead extend the shorter string with space
      myisam/mi_unique.c:
        Updated calls to mi_compare_text
      myisam/mi_write.c:
        Updated calls to mi_compare_text
      myisam/myisam_ftdump.c:
        Removed compiler warning
      mysql-test/r/ctype_collate.result:
        Fixed wrong result
      mysql-test/r/heap_btree.result:
        More tests
      mysql-test/t/heap_btree.test:
        more tests
      mysys/charset.c:
        Don't read charsets if we are only using default charset
        Don't require 'init_available_charsets' to succeed.
      mysys/my_handler.c:
        Compare strings with space extend instead of space strip
      mysys/tree.c:
        Fixed code to get better results for range optimzier
      sql/field.cc:
        Compare strings with space extend instead of space strip
      sql/filesort.cc:
        Compare strings with space extend instead of space strip
      sql/ha_heap.cc:
        Created bit map for keys that are using BTREE. This allows the optimzer to use BTREE's for sorting
      sql/ha_heap.h:
        Created bit map for keys that are using BTREE. This allows the optimzer to use BTREE's for sorting
      strings/ctype-big5.c:
        Compare strings with space extend instead of space strip
      strings/ctype-czech.c:
        Indentation cleanup. Should be fixed to use space extend
      strings/ctype-gbk.c:
        Compare strings with space extend instead of space strip
      strings/ctype-latin1.c:
        Compare strings with space extend instead of space strip
        Added missing my_hash_sort_latin1_de function
      strings/ctype-mb.c:
        For binary strings, don't remove end space when comparing
      strings/ctype-simple.c:
        Compare strings with space extend instead of space strip
      strings/ctype-sjis.c:
        Compare strings with space extend instead of space strip
      strings/ctype-tis620.c:
        Added comments that we should fix end space handling
      strings/ctype-ucs2.c:
        indentation fixes
      strings/ctype-utf8.c:
        Added comments that we should fix end space handling
      strings/ctype-win1250ch.c:
        Added comments that we should fix end space handling
      887d6f14
    • unknown's avatar
      Merge sanja.is.com.ua:/home/bell/mysql/bk/mysql-3.23 · b67b87fd
      unknown authored
      into sanja.is.com.ua:/home/bell/mysql/bk/work-alter-3.23
      
      b67b87fd
    • unknown's avatar
      Merge sanja.is.com.ua:/home/bell/mysql/bk/mysql-4.1 · 3144b6bf
      unknown authored
      into sanja.is.com.ua:/home/bell/mysql/bk/work-alias-4.1
      
      
      sql/sql_lex.cc:
        Auto merged
      sql/sql_union.cc:
        Auto merged
      3144b6bf
    • unknown's avatar
      bugs-aware post-commit trigger · a4f252a0
      unknown authored
      cleanup (VERSION variable)
      
      a4f252a0
    • unknown's avatar
      23e480a8
    • unknown's avatar
      Merge bk-internal:/home/bk/mysql-4.0/ · b0c31baf
      unknown authored
      into serg.mylan:/usr/home/serg/Abk/mysql-4.0
      
      b0c31baf
    • unknown's avatar
      af4ff07f
    • unknown's avatar
      shared IO_CACHE: protection against remove_io_share in a wrong time · da51fe02
      unknown authored
      bug#3134
      
      
      BitKeeper/deleted/.del-post-incoming~9f2168f531f09f3b:
        Delete: BitKeeper/triggers/post-incoming
      BitKeeper/deleted/.del-post-outgoing~1dd3d8f0f6e8f3cd:
        Delete: BitKeeper/triggers/post-outgoing
      da51fe02
    • unknown's avatar
      Merge abotchkov@bk-internal.mysql.com:/home/bk/mysql-4.1 · 4cdc50de
      unknown authored
      into deer.(none):/home/hf/work/mysql-4.1.3266
      
      4cdc50de
    • unknown's avatar
      Merge abotchkov@bk-internal.mysql.com:/home/bk/mysql-4.1 · c6355a81
      unknown authored
      into deer.(none):/home/hf/work/mysql-4.1.3266
      
      c6355a81
    • unknown's avatar
      Merge abotchkov@bk-internal.mysql.com:/home/bk/mysql-4.1 · f7d41e5c
      unknown authored
      into deer.(none):/home/hf/work/mysql-4.1.3264
      
      f7d41e5c
    • unknown's avatar
  3. 24 Mar, 2004 11 commits
  4. 23 Mar, 2004 2 commits