1. 23 Jul, 2004 6 commits
  2. 22 Jul, 2004 5 commits
  3. 21 Jul, 2004 2 commits
  4. 20 Jul, 2004 3 commits
  5. 19 Jul, 2004 3 commits
  6. 16 Jul, 2004 8 commits
  7. 15 Jul, 2004 4 commits
  8. 14 Jul, 2004 3 commits
  9. 13 Jul, 2004 6 commits
    • unknown's avatar
      - Fixed a previous modification to the MySQL Startup Item for · 72fae360
      unknown authored
         Mac OS X: the name of the startup script itself must match the
         name of the subdirectory it's located in. Changed MySQL->MySQLCOM 
         in the Do-pkg script and renamed the file in BK. (Thanks to Bryan
         McCormack for reporting this)
      
      
      Build-tools/Do-pkg:
         - renamed script from MySQL to MySQLCOM to match the name of the
           directory it's installed in
      support-files/MacOSX/MySQLCOM:
         - Fixed the file and directory name to match the actual location
      72fae360
    • unknown's avatar
      Merge gbichot@213.136.52.20:/home/bk/mysql-4.1 · 86b41675
      unknown authored
      into mysql.com:/home/mysql_src/mysql-4.1-874
      
      86b41675
    • unknown's avatar
      WL#1900 "When CHECK TABLE or ANALYZE TABLE of a MyISAM table is killed · 724c5236
      unknown authored
      by KILL or shutdown, do not mark the table as corrupted".
      It is indeed more logical to leave the corruption flag unchanged.
      This cannot be extended to REPAIR/OPTIMIZE as they make no backup copy
      of the MYI. This patch was tested with KILL and mysqladmin shutdown
      while a CHECK TABLE was running. Without the patch, the table becomes
      unusable (can't INSERT to it, error 145). With the patch, no.
      
      
      sql/ha_myisam.cc:
        When CHECK TABLE or ANALYZE TABLE is killed by KILL,
        do not mark the table corrupted; leave its corruption flag
        unchanged.
      724c5236
    • unknown's avatar
      - fixed tabbing and added several missing symbols (required for · 669708d1
      unknown authored
         linking with PHP5) (thanks to Georg Richter for the patch)
      
      669708d1
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1/ · 8bba1cba
      unknown authored
      into serg.mylan:/usr/home/serg/Abk/mysql-4.1
      
      8bba1cba
    • unknown's avatar
      forced X/Open mode on HPUX removed. The correct way (that affects not only C... · da0adbac
      unknown authored
      forced X/Open mode on HPUX removed. The correct way (that affects not only C but also C++ and linking) would be
      
      CFLAGS="-D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED -D_HPUX_SOURCE"
      CXXFLAGS="-D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED -D_HPUX_SOURCE"
      LDFLAGS="-lxnet"
      
      but apparently MySQL works without too.
      
      
      da0adbac