An error occurred fetching the project authors.
  1. 11 Dec, 2007 1 commit
  2. 07 Dec, 2007 1 commit
  3. 13 Nov, 2007 1 commit
    • istruewing@stella.local's avatar
      Bug#32078 - Excessive warnings: One can only use the --user switch · edce8a63
      istruewing@stella.local authored
                  if running as root
      
      Every start of a server in the test suite raised that warning.
      
      The cause was an unconditionla add of the --user option to the
      server command line. Only the "root" user (effective user id == 0)
      must use that option.
      
      Added check for effective user id == 0 before adding --user.
      
      Thanks to Magnus Svensson for the patch.
      edce8a63
  4. 07 Nov, 2007 1 commit
  5. 02 Nov, 2007 1 commit
  6. 01 Nov, 2007 1 commit
  7. 30 Oct, 2007 1 commit
  8. 23 Oct, 2007 1 commit
  9. 15 Oct, 2007 1 commit
    • gkodinov/kgeorge@magare.gmz's avatar
      Bug #27099: system_mysql fail in pushbuild windows · ba03c12b
      gkodinov/kgeorge@magare.gmz authored
      On Windows the debug log was doing freopen () instead of
      fflush() and that was slowing the logging down that much 
      that some tests timed out.
      Fixed by replacing the freopen() with an syncing-to-disk
      flag to fopen() and fflush().
      Also increased the timeout of the tests running with --debug
      on windows : seems to slow down as much as valgrind on linux.
      ba03c12b
  10. 05 Oct, 2007 3 commits
  11. 04 Oct, 2007 1 commit
    • jperkin@production.mysql.com's avatar
      Restore creation of test databases and the anonymous user which · 5c0c5921
      jperkin@production.mysql.com authored
      were accidentally removed during a previous rototill of this
      code.  Fixes bug#27692.
        
      While it can be argued we should strive to provide a 'secure by
      default' installation, this happens to be the setup currently
      documented in the manual as the default, so defer changes that
      improve security out of the box to a co-ordinated effort later
      on.
        
      For now, make a note about the test databases and anonymous user
      in mysql_install_db and recommend that mysql_secure_installation
      be ran for users wishing to remove these defaults.
      
      [..re-commit of previously lost change..]
      5c0c5921
  12. 21 Sep, 2007 1 commit
  13. 29 Aug, 2007 2 commits
  14. 28 Aug, 2007 1 commit
  15. 24 Aug, 2007 1 commit
  16. 20 Aug, 2007 1 commit
  17. 16 Aug, 2007 1 commit
    • monty@mysql.com/narttu.mysql.fi's avatar
      Fixed errors found by pushbuild: · 9b6b53f0
      monty@mysql.com/narttu.mysql.fi authored
      Fixed failing func_misc test for embedded server
      Added casts to avoid compiler warnings
      Removed Table_locks_immediate as it's depending on log file cacheing
      Changed type of get_time() to avoid warnings
      Removed testing if purger master logs succeded as this is not deterministic
      9b6b53f0
  18. 14 Aug, 2007 3 commits
  19. 13 Aug, 2007 1 commit
  20. 05 Aug, 2007 1 commit
  21. 03 Aug, 2007 4 commits
  22. 01 Aug, 2007 1 commit
  23. 24 Jul, 2007 1 commit
    • antony@pcg5ppc.xiphis.org's avatar
      Bug#25714 · 6b38c5b7
      antony@pcg5ppc.xiphis.org authored
        "getGeneratedKeys() does not work with FEDERATED table"
        mysql_insert() expected the storage engine to update the row data
        during the write_row() operation with the value of the new auto-
        increment field. The field must be updated when only one row has
        been inserted as mysql_insert() would ignore the thd->last_insert.
        This patch implements HA_STATUS_AUTO support in ha_federated::info()
        and ensures that ha_federated::write_row() does update the row's
        auto-increment value.
        The test case was written in C as the protocol's 'id' value is
        accessible through libmysqlclient and not via SQL statements.
        mysql-test-run.pl was extended to enable running the test binary.
      6b38c5b7
  24. 29 Jun, 2007 1 commit
  25. 27 Jun, 2007 1 commit
  26. 26 Jun, 2007 1 commit
  27. 20 Jun, 2007 1 commit
  28. 13 Jun, 2007 1 commit
  29. 08 Jun, 2007 2 commits
  30. 01 Jun, 2007 1 commit
  31. 31 May, 2007 1 commit
    • mhansson@dl145s.mysql.com's avatar
      bug#27741: udf test fails on AIX < 5.3 · 3ee16518
      mhansson@dl145s.mysql.com authored
      problem #1: udf_example.so does not get built on AIX
      
      solution#1: build it yourself using
      cd sql; gcc  -g -I ../include/ -I /usr/include/ -lpthread  \
      -shared -o udf_example.so udf_example.c; mv udf_example.so \
      .libs/ 
      
      problem#2 (the bug): udf_example fails because it does not
      recognize the variable LD_LIBRARY_PATH when doing dl_open(),
      it looks at LIBPATH
      
      solution#2: add the library path to LIBPATH
      
      problem#3: udf_example returns the wrong result length since 
      it relies on strmov to return a pointer to the end of the 
      string that it copies. On AIX builds, where m_string.h is not
      included (m_string defines a macro expanding strmov to stpcpy),
      there is a macro expanding strmov to strcpy, which returns a 
      pointer to the first character.
      
      solution#3: define strmov as stpcpy.
      
      problem#4: #2 applies on hp-ux as well, but this platform
      looks at SHLIB_PATH
      
      solution#4: added the library path to SHLIB_PATH
      3ee16518