1. 25 Mar, 2010 6 commits
  2. 24 Mar, 2010 7 commits
  3. 23 Mar, 2010 4 commits
  4. 22 Mar, 2010 7 commits
    • Jonathan Perkin's avatar
      Fix RPM prefix. · 303ab1fc
      Jonathan Perkin authored
      303ab1fc
    • Jonathan Perkin's avatar
      38626df5
    • Jonathan Perkin's avatar
      8a9b61cc
    • Joerg Bruehe's avatar
      Fixes related to bug#46587: · b61fe56b
      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.
      b61fe56b
    • Joerg Bruehe's avatar
      Some fixes for the build on Windows · d8836711
      Joerg Bruehe authored
      as found necessary during the release build of 5.5.3-m3.
      
      scripts/CMakeLists.txt:
        The scripts "mysqldumpslow" and "mysqlhotcopy" need to be handled.
      scripts/make_win_bin_dist:
        1) We do not create ".map" files any more.
        
        2) Typing error fixed, it isn't "$DISTDIR" but "$DESTDIR".
        
        3) Security fix:
           If the argument isn't of the form "dst=src",
           then we want the variables to be empty.
        The original code would have used an argument "foo"
        to set both "$src" and "$dst" to this string,
        which doesn't make much sense.
      d8836711
    • Jonathan Perkin's avatar
      Tidy. · 29688329
      Jonathan Perkin authored
      29688329
    • Jonathan Perkin's avatar
      Try to fix SVR4 packages. · aba006b7
      Jonathan Perkin authored
      aba006b7
  5. 19 Mar, 2010 2 commits
  6. 18 Mar, 2010 1 commit
  7. 16 Mar, 2010 1 commit
    • Joerg Bruehe's avatar
      Fix a syntax error: · f4013d13
      Joerg Bruehe authored
      A variable declaration was preceded by "DBUG_PRINT()".
      
      sql-common/client.c:
        Thou shalt not declare a variable after an executable statement
        (and "DBUG_PRINT()" is executable).
      f4013d13
  8. 15 Mar, 2010 3 commits
  9. 13 Mar, 2010 1 commit
  10. 12 Mar, 2010 6 commits
  11. 11 Mar, 2010 2 commits
    • Joerg Bruehe's avatar
      f59c7267
    • Konstantin Osipov's avatar
      A fix for Bug#49972 "Crash in prepared statements": · ea70b6a2
      Konstantin Osipov authored
      The problem is introduced by WL#4435 "Support OUT-parameters in 
      prepared statements".
      When a statement that has out parameters was reprepared,
      the reprepare request error was ignored, and an
      attempt to send out parameters to the client was made.
      
      Since the out parameter list was not initialized in case
      of an error, this attempt led to a crash.
      
      Don't try to send out parameters to the client
      if an error occurred in statement execution.
      
      sql/sql_prepare.cc:
        Don't try to send out parameters if error.
      tests/mysql_client_test.c:
        Re-enable the test case for Bug#49972.
      ea70b6a2