1. 22 Mar, 2010 2 commits
    • Joerg Bruehe's avatar
      Fixes related to bug#46587: · adbd8fe6
      Joerg Bruehe authored
      archive storage engine headers don't include my_global.h first
      
      
      During the build of 5.5.3-m3 on older Linux platforms
      (kernels 2.4 or early 2.6),
      the symptom described in the bug report occurred both
      in the "archive" and in the "innobase" storage engine.
      
      This change is the patch proposed in that bug report,
      and a similar one in innobase, that latter is aligned
      with Vasil Dimov of Innobase, the original author.
      adbd8fe6
    • Joerg Bruehe's avatar
      Some fixes for the build on Windows · 82b4452b
      Joerg Bruehe authored
      as found necessary during the release build of 5.5.3-m3.
      82b4452b
  2. 16 Mar, 2010 1 commit
  3. 15 Mar, 2010 3 commits
  4. 13 Mar, 2010 1 commit
  5. 12 Mar, 2010 6 commits
  6. 11 Mar, 2010 7 commits
  7. 10 Mar, 2010 18 commits
  8. 09 Mar, 2010 2 commits
    • Marc Alff's avatar
      Bug#51878 Build break in HPUX involving mysql_prlock on a client · dbdd83a4
      Marc Alff authored
      This is a fix specific for HPUX,
      for which the compiler does not resolve properly dependencies
      involving unused inline functions.
      (See existing comments in mysql_thread.h)
      
      In include/mysql/psi/mysql_thread.h,
      the instrumentation helpers for mysql_prlock_*
      uses the pr lock apis.
      
      These apis are implemented in mysys/thr_rwlock.c,
      which is not linked to client code.
      
      As a result, the code does not link in libmysql_r, on HPUX.
      
      The fix is to cut dependencies explicitely,
      by introducing -DDISABLE_MYSQL_RWLOCK_H,
      when building client code.
      dbdd83a4
    • Tor Didriksen's avatar
      Bug#50888 valgrind warnings in Field_timestamp::val_str · 58d05cae
      Tor Didriksen authored
      Ensure that we store the correct cached_field_type whenever we cache Field items
      (in this case it allows us to compare dates as dates, rather than strings)
      58d05cae