1. 03 Apr, 2007 2 commits
  2. 02 Apr, 2007 1 commit
    • unknown's avatar
      BUG#25729 - boolean full text search is confused by NULLs produced by · 3c763afc
      unknown authored
                  LEFT JOIN
      Fixed that in certain situations MATCH ... AGAINST returns false hits
      for NULLs produced by LEFT JOIN when there is no fulltext index
      available.
      
      
      mysql-test/r/fulltext_left_join.result:
        A test case for BUG#25729.
      mysql-test/t/fulltext_left_join.test:
        A test case for BUG#25729.
      sql/item_func.cc:
        concat_ws(NULL) returns empty string instead of NULL. There is not much
        sense to calculate relevance for empty strings, thus return 0 immediately
        if we got NULL or empty string from concat_ws.
      sql/item_func.h:
        Item_func_match::concat renamed to concat_ws.
      3c763afc
  3. 31 Mar, 2007 3 commits
  4. 30 Mar, 2007 8 commits
    • unknown's avatar
      Merge chilla.local:/home/mydev/mysql-5.0-axmrg · cf465f7e
      unknown authored
      into  chilla.local:/home/mydev/mysql-5.1-axmrg
      
      
      sql/ha_ndbcluster.cc:
        Auto merged
      sql/ha_ndbcluster.h:
        Auto merged
      cf465f7e
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.1 · 0db1a148
      unknown authored
      into  chilla.local:/home/mydev/mysql-5.1-axmrg
      
      
      sql/ha_ndbcluster.cc:
        Auto merged
      0db1a148
    • unknown's avatar
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.0 · fe8c67ef
      unknown authored
      into  chilla.local:/home/mydev/mysql-5.0-axmrg
      
      
      sql/ha_ndbcluster.cc:
        Auto merged
      sql/ha_ndbcluster.h:
        Auto merged
      fe8c67ef
    • unknown's avatar
      BUG#26138 - REPAIR TABLE with option USE_FRM erases all records in · 0da1a0cd
      unknown authored
                  ARCHIVE table
      ARCHIVE table was truncated by REPAIR TABLE ... USE_FRM statement.
      The table handler returned its file name extensions in a wrong order.
      REPAIR TABLE believed it has to use the meta file to create a new table
      from it.
      
      With the fixed order, REPAIR TABLE does now use the data file to create
      a new table. So REPAIR TABLE ... USE_FRM works well with ARCHIVE engine
      now.
      
      This issue affects 5.0 only, since in 5.1 ARCHIVE engine stores meta
      information and data in the same file.
      
      
      mysql-test/r/archive.result:
        A test case for bug#26138.
      mysql-test/t/archive.test:
        A test case for bug#26138.
      sql/examples/ha_example.cc:
        Added a comment.
      sql/ha_archive.cc:
        First element of engine file name extentions array should be meta/index
        file extention. Second element - data file extention. This is true
        for engines that have separate meta/index file and data file.
        
        Reoder ha_archive_exts elements to meet described above requirement.
      sql/handler.h:
        Added a comment.
      sql/sql_table.cc:
        Added a comment.
      0da1a0cd
    • unknown's avatar
      Post merge fix · a2139d02
      unknown authored
      a2139d02
    • unknown's avatar
      Merge chilla.local:/home/mydev/mysql-5.0-axmrg · 1d3d4d0d
      unknown authored
      into  chilla.local:/home/mydev/mysql-5.1-axmrg
      
      
      1d3d4d0d
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.1 · 644316ed
      unknown authored
      into  chilla.local:/home/mydev/mysql-5.1-axmrg
      
      
      include/my_pthread.h:
        Auto merged
      include/thr_alarm.h:
        Auto merged
      mysys/my_pthread.c:
        Auto merged
      mysys/thr_alarm.c:
        Auto merged
      sql/mysqld.cc:
        Auto merged
      sql/stacktrace.c:
        Auto merged
      sql/stacktrace.h:
        Auto merged
      mysys/my_thr_init.c:
        Manual merge
      644316ed
  5. 29 Mar, 2007 18 commits
  6. 28 Mar, 2007 8 commits
    • unknown's avatar
      Makefile.am: · 53b9d044
      unknown authored
        Extended test section
        Removed duplicate EXTRA_DIST
      
      
      client/Makefile.am:
        Removed duplicate EXTRA_DIST
      Makefile.am:
        Extended test section
      53b9d044
    • unknown's avatar
      Merge mysql.com:/home/kent/bk/tmp/mysql-5.0-build · f2e8355d
      unknown authored
      into  mysql.com:/home/kent/bk/tmp/mysql-5.1-build
      
      
      Makefile.am:
        Auto merged
      configure.in:
        Auto merged
      include/config-win.h:
        Auto merged
      BitKeeper/deleted/.del-CMakeLists.txt~1:
        Auto merged
      BitKeeper/deleted/.del-README~1:
        Auto merged
      BitKeeper/deleted/.del-configure.js:
        Auto merged
      f2e8355d
    • unknown's avatar
      configure.in: · 406fd12a
      unknown authored
        Don't install ndb man pages if no ndb configured
      config-win.h, CMakeLists.txt, README, configure.js:
        Removed Cybozu patches
      
      
      configure.in:
        Don't install ndb man pages if no ndb configured
      CMakeLists.txt:
        Removed Cybozu patches
      include/config-win.h:
        Removed Cybozu patches
      win/README:
        Removed Cybozu patches
      win/configure.js:
        Removed Cybozu patches
      406fd12a
    • unknown's avatar
      Merge kboortz@bk-internal.mysql.com:/home/bk/mysql-5.1 · 5d3b8266
      unknown authored
      into  mysql.com:/home/kent/bk/tmp/mysql-5.1-build
      
      
      5d3b8266
    • unknown's avatar
      Merge bk-internal.mysql.com:/data0/bk/mysql-5.1 · e3d3f302
      unknown authored
      into  bk-internal.mysql.com:/data0/bk/mysql-5.1-arch
      
      
      e3d3f302
    • unknown's avatar
      mysys/my_thr_init.c : Avoid warnings of "unused variable" by extending a '#ifdef'. · d167071b
      unknown authored
      
      mysys/my_thr_init.c:
        Enclose a variable declaration in the same '#ifdef' that also controls all access to the variable.
        This avoids warnings of "unused variable".
      d167071b
    • unknown's avatar
      BUG#25521 - optimize table, delete, show table status leads to table · e8a25c95
      unknown authored
                  losing it's .MYD
      
      When OPTIMIZE TABLE is completed it attempts to rename temporary
      file to original name. This step may fail on windows when a file
      is opened. As a result data file might be deleted and optimized
      copy of file (table_name.MYD) remains.
      
      This situation is handled properly by my_delete_allow_opened, so
      use it instead of my_delete when attempting to rename a file on
      windows.
      
      No suitable test case for this bug.
      
      
      mysys/my_redel.c:
        Attempting to delete an opened file and to immediately create
        a new one with the same name may result in my_redel failure on
        windows. It may fail because file is not deleted until it is
        closed.
        
        This situation is handled properly by my_delete_allow_opened, so
        use it instead of my_delete.
      e8a25c95
    • unknown's avatar
      compiler warnings · 2cdd8359
      unknown authored
      2cdd8359