1. 07 Nov, 2007 1 commit
  2. 06 Nov, 2007 8 commits
    • unknown's avatar
      Bug#4692 - DISABLE/ENABLE KEYS waste a space · e961f016
      unknown authored
      Post-merge fix. Moved test into 5.0 section.
      
      e961f016
    • unknown's avatar
      Merge stella.local:/home2/mydev/mysql-5.0-axmrg · d742cec6
      unknown authored
      into  stella.local:/home2/mydev/mysql-5.1-axmrg
      
      
      mysql-test/t/ctype_uca.test:
        Auto merged
      mysql-test/r/myisam.result:
        Manual merge from 5.0.
      mysql-test/t/myisam.test:
        Manual merge from 5.0.
      mysql-test/t/subselect.test:
        Manual merge from 5.0.
      storage/myisam/mi_check.c:
        Manual merge from 5.0.
      d742cec6
    • unknown's avatar
      Merge stella.local:/home2/mydev/mysql-5.1-amain · 9389a2a2
      unknown authored
      into  stella.local:/home2/mydev/mysql-5.1-axmrg
      
      9389a2a2
    • unknown's avatar
      Merge stella.local:/home2/mydev/mysql-5.0-amain · 69951a7f
      unknown authored
      into  stella.local:/home2/mydev/mysql-5.0-axmrg
      
      69951a7f
    • unknown's avatar
      Merge stella.local:/home2/mydev/mysql-5.0-ateam · d948921f
      unknown authored
      into  stella.local:/home2/mydev/mysql-5.0-axmrg
      
      d948921f
    • unknown's avatar
      Bug#4692 - DISABLE/ENABLE KEYS waste a space · 6b50443b
      unknown authored
      Disabling and enabling indexes on a non-empty table grows the
      index file.
      
      Disabling indexes just sets a flag per non-unique index and does not
      free the index blocks of the affected indexes. Re-enabling indexes
      creates new indexes with new blocks. The old blocks remain unused
      in the index file.
      
      Fixed by dropping and re-creating all indexes if non-empty disabled
      indexes exist when enabling indexes. Dropping all indexes resets
      the internal end-of-file marker to the end of the index file header.
      It also clears the root block pointers of every index and clears the
      deleted blocks chains. This way all blocks are declared as free.
      
      
      myisam/mi_check.c:
        Bug#4692 - DISABLE/ENABLE KEYS waste a space
        Added function mi_drop_all_indexes() to support drop of all indexes
        in case we want to re-enable non-empty disabled indexes.
        Changed mi_repair(), mi_repair_by_sort(), and mi_repair_parallel()
        to use the new function instead of duplicate drop index code.
      mysql-test/r/myisam.result:
        Bug#4692 - DISABLE/ENABLE KEYS waste a space
        Added test result.
      mysql-test/t/myisam.test:
        Bug#4692 - DISABLE/ENABLE KEYS waste a space
        Added test.
      6b50443b
    • unknown's avatar
      Merge mysql.com:/home/svoj/devel/mysql/BUG31950/mysql-5.0-engines · c7a26788
      unknown authored
      into  mysql.com:/home/svoj/devel/mysql/BUG31950/mysql-5.1-engines
      
      
      storage/myisam/ft_parser.c:
        Use local.
      c7a26788
    • unknown's avatar
      Merge svojtovich@bk-internal.mysql.com:/home/bk/mysql-5.0-engines · 26c75106
      unknown authored
      into  mysql.com:/home/svoj/devel/mysql/BUG31950/mysql-5.0-engines
      
      26c75106
  3. 05 Nov, 2007 4 commits
  4. 03 Nov, 2007 1 commit
  5. 02 Nov, 2007 18 commits
  6. 01 Nov, 2007 8 commits
    • unknown's avatar
      Bug#30671 · ff3ee941
      unknown authored
        "ALTER SERVER can cause server to crash"
        While retrieving values, it would erronously set the socket value
        to NULL and attempt to use it in strcmp().
        Ensure it is correctly set to "" so that strcmp may not crash.
      
      
      mysql-test/r/federated_server.result:
        results for bug30671
        fix inconsistent result
      mysql-test/t/federated_server.test:
        surplus semicolon
        test for bug30671
      sql/sql_servers.cc:
        bug30671
        inside function get_server_from_table_to_cache()
          server->socket was being set to NULL instead of empty string
      ff3ee941
    • unknown's avatar
      disable test · a65e368a
      unknown authored
      a65e368a
    • unknown's avatar
      Merge stella.local:/home2/mydev/mysql-5.0-axmrg · 85e7d19c
      unknown authored
      into  stella.local:/home2/mydev/mysql-5.1-axmrg
      
      
      mysql-test/t/variables.test:
        Manual merge from 5.0
      85e7d19c
    • unknown's avatar
      Merge stella.local:/home2/mydev/mysql-5.0-amain · 52d18cfa
      unknown authored
      into  stella.local:/home2/mydev/mysql-5.0-axmrg
      
      52d18cfa
    • unknown's avatar
      Post-merge fix · 94b28ff8
      unknown authored
      94b28ff8
    • unknown's avatar
      Bug#31909 - New gis.test creates warnings files · a34cc513
      unknown authored
      Comment sign of -- at line begin in test files lead to warnings
      from mysqltest.
      
      Changed -- to #.
      
      
      mysql-test/include/gis_keys.inc:
        Bug#31909 - New gis.test creates warnings files
        Changed -- to # at comment begin to avoid warnings files.
      a34cc513
    • unknown's avatar
      BUG#31950 - repair table hangs while processing multicolumn utf8 · d92cd553
      unknown authored
                  fulltext index
      
      Having a table with broken multibyte characters may cause fulltext
      parser dead-loop.
      
      Since normally it is not possible to insert broken multibyte sequence
      into a table, this problem may arise only if table is damaged.
      
      Affected statements are:
      - CHECK/REPAIR against damaged table with fulltext index;
      - boolean mode phrase search against damaged table with or
        without fulltext inex;
      - boolean mode searches without index;
      - nlq searches.
      
      No test case for this fix. Affects 5.0 only.
      
      
      myisam/ft_parser.c:
        When skipping leading spaces, skip broken characters as well (broken
        characters a identified by mbl == 0).
      d92cd553
    • unknown's avatar
      disable tests · c7cc2752
      unknown authored
      
      BitKeeper/etc/ignore:
        Added libmysql_r/client_settings.h to the ignore list
      c7cc2752