1. 10 Jan, 2007 1 commit
    • tsmith@siva.hindu.god's avatar
      WL #3670: Compile-time option to remove GRANT-related startup options · bac65ee9
      tsmith@siva.hindu.god authored
      - configure --disable-grant-options defines DISABLE_GRANT_OPTIONS
      - configure.js/cmake also updated
      - if DISABLE_GRANT_OPTIONS is defined, mysqld no longer recognizes:
        --bootstrap
        --init-file
        --skip-grant-tables
      
      Scripts which rely on those three options are modified to check the environment for MYSQLD_BOOTSTRAP; it should be set to the full path of a mysqld which does handle those options.
      
      For example:
      
      $ export MYSQLD_BOOTSTRAP
      $ MYSQLD_BOOTSTRAP=/path/to/full/MySQL/bin/mysqld
      $ mysql_install_db
      $ make test
      bac65ee9
  2. 27 Nov, 2006 1 commit
  3. 14 Nov, 2006 1 commit
  4. 07 Nov, 2006 1 commit
  5. 02 Nov, 2006 1 commit
  6. 01 Nov, 2006 1 commit
    • petr/cps@mysql.com/owlet.local's avatar
      Fix Bug #9191 "TIMESTAMP/from_unixtime() no longer accepts 2^31-1" · 3ec542df
      petr/cps@mysql.com/owlet.local authored
      (4.1 version, with post-review fixes)
        
        The fix for another Bug (6439) limited FROM_UNIXTIME() to
        TIMESTAMP_MAX_VALUE which is 2145916799 or 2037-12-01 23:59:59 GMT,
        however unix timestamp in general is not considered to be limited 
        by this value. All dates up to power(2,31)-1 are valid.
        
        This patch extends allowed TIMESTAMP range so, that max
        TIMESTAMP value is power(2,31)-1. It also corrects
        FROM_UNIXTIME() and UNIX_TIMESTAMP() functions, so that
        max allowed UNIX_TIMESTAMP() is power(2,31)-1. FROM_UNIXTIME()
        is fixed accordingly to allow conversion of dates up to
        2038-01-19 03:14:07 UTC. The patch also fixes CONVERT_TZ()
        function to allow extended range of dates.
        
        The main problem solved in the patch is possible overflows
        of variables, used in broken-time representation to time_t
        conversion (required for UNIX_TIMESTAMP).
      3ec542df
  7. 24 Oct, 2006 4 commits
  8. 20 Oct, 2006 2 commits
  9. 02 Oct, 2006 1 commit
  10. 14 Sep, 2006 1 commit
  11. 12 Sep, 2006 1 commit
  12. 07 Sep, 2006 2 commits
  13. 06 Sep, 2006 1 commit
  14. 01 Sep, 2006 1 commit
  15. 24 Aug, 2006 1 commit
  16. 23 Aug, 2006 1 commit
  17. 19 Aug, 2006 1 commit
  18. 17 Aug, 2006 1 commit
  19. 29 Jul, 2006 1 commit
  20. 28 Jul, 2006 1 commit
  21. 26 Jul, 2006 1 commit
  22. 14 Jul, 2006 1 commit
  23. 12 Jul, 2006 1 commit
    • cmiller@calliope.local's avatar
      Bug#18470: Compile Failure: strings.s fails make with unknown pseudo-ops · 83411181
      cmiller@calliope.local authored
      The bug is thqt we use some nonstandard assembly codes in our strings
      source, and some assemblers don't know what to do with them:  Specifically,
      Sun's Solaris assembler and Apple's Darwin assembler balk at them.
      
      This patch, rather than trying to test for properties of the assembler, 
      which Autoconf doesn't have any decent facilites for, instead tries to
      compile the code in question and disables assembly if it fails.
      
      There's still the problem of unportable assembly, but I'll leave that 
      to someone who feels like rewriting and debugging it.
      83411181
  24. 11 Jul, 2006 1 commit
  25. 10 Jul, 2006 1 commit
  26. 07 Jul, 2006 1 commit
  27. 29 Jun, 2006 1 commit
  28. 27 Jun, 2006 1 commit
  29. 16 Jun, 2006 1 commit
  30. 12 Jun, 2006 1 commit
  31. 31 May, 2006 1 commit
    • acurtis@xiphis.org's avatar
      Bug#12096 · 23e612ae
      acurtis@xiphis.org authored
        "Add line for non-executable stack in .s files"
        Fix so that configure will use "--noexecstack" for assembler if gcc supports
        option and compiled C doesn't need executable stack.
      23e612ae
  32. 24 May, 2006 4 commits