An error occurred fetching the project authors.
  1. 01 Nov, 2006 1 commit
    • unknown's avatar
      Fix Bug #9191 "TIMESTAMP/from_unixtime() no longer accepts 2^31-1" · 8a7bc052
      unknown 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).
      
      
      acinclude.m4:
        Add new macro to check time_t range
      configure.in:
        Call the macro to check time_t range
      include/my_time.h:
        Move time-related defines to proper place.
        Add a function to perform a rough check if
        a TIMESTAMP value fits into the boundaries.
        Note: it is defined as "static inline", as
        otherwise libmysql won't compile (due to the
        way how gcc handles "inline" directive).
      mysql-test/r/func_time.result:
        Update test result
      mysql-test/r/timezone.result:
        Update test result
      mysql-test/r/timezone2.result:
        Update test result
      mysql-test/t/func_time.test:
        Add test for Bug#9191 and update test to be consistent
        with new TIMESTAMP boundaries
      mysql-test/t/timezone.test:
        Update old tests to be consistent
        with new TIMESTAMP boundaries
      mysql-test/t/timezone2.test:
        Update tests for convert_tz to be consistent with new
        TIMESTAMP boundaries
      sql/item_timefunc.cc:
        Fix convert_tz to allow dates from the new (extended)
        TIMESTAMP range
      sql/mysql_priv.h:
        Move time handling defaults to my_time.h
      sql-common/my_time.c:
        Because of increased TIMESTAMP_MAX_VALUE overflows in my_system_gmt_sec()
        became possible. Here we make it safe against the overflows by stepping
        back from the boundary dates which are likely to trigger them.
      sql/time.cc:
        Update TIME_to_timestamp to allow conversion of
        extended date range
      sql/tztime.cc:
        Fix new (4.1) implementation of broken-down time representation
        to time_t conversion routine to avoid overflows during conversion
        of boundary dates
      mysql-test/r/timezone4.result:
        New BitKeeper file ``mysql-test/r/timezone4.result''
      mysql-test/t/timezone4-master.opt:
        New BitKeeper file ``mysql-test/t/timezone4-master.opt''
      mysql-test/t/timezone4.test:
        New BitKeeper file ``mysql-test/t/timezone4.test''
      8a7bc052
  2. 24 Oct, 2006 1 commit
  3. 20 Oct, 2006 2 commits
    • unknown's avatar
      configure.in: · 71fee03e
      unknown authored
        Raised version number to 5.0.28
      
      
      configure.in:
        Raised version number to 5.0.28
      71fee03e
    • unknown's avatar
      make_win_bin_dist: · 644dcbf2
      unknown authored
        Copy udf examples and raid.h
        Create target "include" directory before copying files to it
      CMakeLists.txt:
        Only compile in bdb if configured
      configure.in:
        Raised version number to 5.0.27
      
      
      scripts/make_win_bin_dist:
        Copy udf examples and raid.h
        Create target "include" directory before copying files to it
      CMakeLists.txt:
        Only compile in bdb if configured
      configure.in:
        Raised version number to 5.0.27
      644dcbf2
  4. 16 Oct, 2006 1 commit
    • unknown's avatar
      make_binary_distribution.sh: · 7ef680fe
      unknown authored
        Split copy of result files to avoid shell limit.
        Added copy of mysql-test/std_data/ndb_backup5{0,1}.
      configure.in:
        Look for dlopen() even if --with-mysqld-ldflags constains "-static",
        as this is not the same as the flag to "ld", it just informs
        "libtool" to link static with libraries created part of the build,
        even if there exists shared versions.
      
      
      configure.in:
        Look for dlopen() even if --with-mysqld-ldflags constains "-static",
        as this is not the same as the flag to "ld", it just informs
        "libtool" to link static with libraries created part of the build,
        even if there exists shared versions.
      scripts/make_binary_distribution.sh:
        Split copy of result files to avoid shell limit.
        Added copy of mysql-test/std_data/ndb_backup5{0,1}.
      7ef680fe
  5. 11 Oct, 2006 1 commit
  6. 02 Oct, 2006 1 commit
  7. 14 Sep, 2006 1 commit
  8. 12 Sep, 2006 1 commit
  9. 07 Sep, 2006 2 commits
  10. 06 Sep, 2006 1 commit
  11. 01 Sep, 2006 1 commit
  12. 24 Aug, 2006 1 commit
  13. 23 Aug, 2006 1 commit
  14. 19 Aug, 2006 2 commits
    • unknown's avatar
      Major changes are plug.in files created for almost all storage engines. A few... · b470b3ab
      unknown authored
      Major changes are plug.in files created for almost all storage engines. A few stray BDB references removed. 
      
      
      storage/blackhole/plug.in:
        BitKeeper file /home/brian/mysql/arch-5.1/storage/blackhole/plug.in
      storage/heap/plug.in:
        BitKeeper file /home/brian/mysql/arch-5.1/storage/heap/plug.in
      storage/myisam/plug.in:
        BitKeeper file /home/brian/mysql/arch-5.1/storage/myisam/plug.in
      storage/myisammrg/plug.in:
        BitKeeper file /home/brian/mysql/arch-5.1/storage/myisammrg/plug.in
      storage/federated/ha_federated.h:
        Rename: sql/ha_federated.h -> storage/federated/ha_federated.h
      BUILD/FINISH.sh:
        Stray BDB reference
      BUILD/autorun.sh:
        Stray bdb reference
      BUILD/compile-alpha-cxx:
        Stray bdb reference
      BUILD/compile-alpha-debug:
        Stray bdb reference
      BUILD/compile-dist:
        Stray BDB Reference
      BUILD/compile-ia64-debug-max:
        Stray BDB reference
      configure.in:
        All plugin code is now in plug.in files. Few tricky exceptions left.
      sql/CMakeLists.txt:
        Removed federated references
      sql/Makefile.am:
        Removed federated references
      sql/mysql_priv.h:
        stray bdb reference
      storage/example/ha_example.cc:
        Enabled all of mysql include
      storage/federated/ha_federated.cc:
        Added plugin defs
      storage/csv/plug.in:
        New BitKeeper file ``storage/csv/plug.in''
      storage/federated/Makefile.am:
        New BitKeeper file ``storage/federated/Makefile.am''
      storage/federated/plug.in:
        New BitKeeper file ``storage/federated/plug.in''
      storage/innobase/plug.in:
        New BitKeeper file ``storage/innobase/plug.in''
      storage/ndb/plug.in:
        New BitKeeper file ``storage/ndb/plug.in''
      b470b3ab
    • unknown's avatar
      WL#3432 (Compile the Parser with a --debug --verbose option) · cd2c9eec
      unknown authored
      Corrected build issues : the build can not be conditional.
      to keep a unique source .tar.gz distribution.
      
      
      configure.in:
        Rolling back previous change
      sql/Makefile.am:
        Partially rolling back previous change.
        The build has to be unconditional, for the source .tar.gz distribution
      sql/mysql_priv.h:
        WL#3432 (Compile the Parser with a --debug --verbose option)
      sql/sql_parse.cc:
        WL#3432 (Compile the Parser with a --debug --verbose option)
        
        Moved turn_parser_debug_on to sql_yacc.yy
      sql/sql_yacc.yy:
        WL#3432 (Compile the Parser with a --debug --verbose option)
        
        Moved turn_parser_debug_on to sql_yacc.yy
      cd2c9eec
  15. 17 Aug, 2006 1 commit
    • unknown's avatar
      WL#3432 (Compile the Parser with a --debug --verbose option) · dec9116f
      unknown authored
      Changed the automake build process :
      - ./configure.in
      - ./sql/Makefile.am
      to compile an instrumented parser for debug=yes or debug=full builds
      
      Changed the (primary) runtime invocation of the parser :
      - sql/sql_parse.cc
      to generate bison traces in stderr when the DBUG "parser_debug" flag is set.
      
      
      configure.in:
        WL#3432 (Compile the Parser with a --debug --verbose option)
        
        New Automake condition : MYSQL_CONF_DEBUG
      sql/Makefile.am:
        WL#3432 (Compile the Parser with a --debug --verbose option)
        
        In Debug mode, compile sql_yacc.yy with --debug --verbose
      sql/sql_parse.cc:
        WL#3432 (Compile the Parser with a --debug --verbose option)
        
        Conditionally turn the bison parser debug on at runtime.
      dec9116f
  16. 10 Aug, 2006 1 commit
    • unknown's avatar
      First stage removeal of BDB. · 21bb4f94
      unknown authored
      BitKeeper/deleted/.del-CMakeLists.txt:
        Delete: storage/bdb/CMakeLists.txt
      BitKeeper/deleted/.del-LICENSE:
        Delete: storage/bdb/LICENSE
      BitKeeper/deleted/.del-Makefile.in:
        Delete: storage/bdb/Makefile.in
      BitKeeper/deleted/.del-compile-pentium-debug-no-bdb:
        Delete: BUILD/compile-pentium-debug-no-bdb
      BUILD/Makefile.am:
        Remove dropped file
      configure.in:
        Remove berkely from configure.
      BUILD/compile-dist:
        Remove option to build bdb
      BUILD/compile-solaris-sparc-purify:
        Remove option for bdb build
      libmysqld/Makefile.am:
        Remove option for bdb build
      sql/Makefile.am:
        Remove bdb build
      21bb4f94
  17. 01 Aug, 2006 1 commit
  18. 29 Jul, 2006 1 commit
    • unknown's avatar
      configure.in: · 189a6879
      unknown authored
        Corrected typo
      
      
      configure.in:
        Corrected typo
      189a6879
  19. 28 Jul, 2006 1 commit
    • unknown's avatar
      Makefile.am, configure.in: · d1fde0f7
      unknown authored
        Man page for mysqld command move to section 8 (bug#21220)
      
      
      configure.in:
        Man page for mysqld command move to section 8 (bug#21220)
      man/Makefile.am:
        Man page for mysqld command move to section 8 (bug#21220)
      d1fde0f7
  20. 26 Jul, 2006 1 commit
    • unknown's avatar
      Bug#16576 Patch to compile on GNU/Hurd (ps check in configure) · 17e310ab
      unknown authored
       - Thanks to Christian Hammers for the patch
      
      
      configure.in:
        The configure check on how to run ps to get mysqld's $PID does not
        work on the Hurd, as the PPID is prepended with a - for login shells,
        thus making grep look for -bash, which it complains as an invalid
        argument.  Filtering out '-' from the ps output makes this work fine.
      17e310ab
  21. 14 Jul, 2006 1 commit
  22. 12 Jul, 2006 1 commit
    • unknown's avatar
      Bug#18470: Compile Failure: strings.s fails make with unknown pseudo-ops · 4bfb28e2
      unknown 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.
      
      
      configure.in:
        Actually try to compile the code in question, since a test for the CPU
        type is insufficient to determine whether our code will compile.
      4bfb28e2
  23. 11 Jul, 2006 1 commit
  24. 10 Jul, 2006 1 commit
  25. 07 Jul, 2006 1 commit
  26. 29 Jun, 2006 1 commit
  27. 27 Jun, 2006 1 commit
  28. 16 Jun, 2006 1 commit
    • unknown's avatar
      configure.in, net_serv.cc, compile-netware-END: · 91fb8310
      unknown authored
        Changes for Netware
      
      
      sql/net_serv.cc:
        Netware needs <sys/select.h>
      configure.in:
        Call of "comp_err" has moved, changed code for Netware that
        edits make files to reflect this
      netware/BUILD/compile-netware-END:
        After correcting "configure.in" to edit make files correctly,
        removed obsolete "sed" of "extra/Makefile.am" for Netware
      91fb8310
  29. 15 Jun, 2006 2 commits
  30. 12 Jun, 2006 1 commit
  31. 01 Jun, 2006 1 commit
    • unknown's avatar
      unittest: · 740077bd
      unknown authored
        rename *.t* to *-t* to be automake-friendly
        simplify Makefiles
      test_atomic.c:
        move to unittest, add GPL comment, fix warnings, convert to tap framework.
      configure:
        remove custom tests for available types, use AC_CHECK_TYPE instead
      x86-gcc.h:
        fix gcc -ansi errors while maintaining readability
      ignore:
        added *-t
      
      
      unittest/mysys/base64-t.c:
        Rename: unittest/mysys/base64.t.c -> unittest/mysys/base64-t.c
      unittest/mysys/bitmap-t.c:
        Rename: unittest/mysys/bitmap.t.c -> unittest/mysys/bitmap-t.c
      unittest/mytap/t/basic-t.c:
        Rename: unittest/mytap/t/basic.t.c -> unittest/mytap/t/basic-t.c
      unittest/examples/no_plan-t.c:
        Rename: unittest/examples/no_plan.t.c -> unittest/examples/no_plan-t.c
      unittest/examples/simple-t.c:
        Rename: unittest/examples/simple.t.c -> unittest/examples/simple-t.c
      unittest/examples/skip-t.c:
        Rename: unittest/examples/skip.t.c -> unittest/examples/skip-t.c
      unittest/examples/skip_all-t.c:
        Rename: unittest/examples/skip_all.t.c -> unittest/examples/skip_all-t.c
      unittest/examples/todo-t.c:
        Rename: unittest/examples/todo.t.c -> unittest/examples/todo-t.c
      BitKeeper/etc/ignore:
        added *-t
      config/ac-macros/misc.m4:
        remove custom AC_TRY_RUN tests for available types, use AC_CHECK_TYPE instead
      configure.in:
        remove custom tests for available types, use AC_CHECK_TYPE instead
      include/atomic/x86-gcc.h:
        fix gcc -ansi errors while maintaining readability
      include/my_global.h:
        remove custom tests for available types, use AC_CHECK_TYPE instead
      include/my_sys.h:
        add missing declaration
      mysys/Makefile.am:
        move test_atomic to unittest
      unittest/Makefile.am:
        simplifications, correct permissions in chmod
      unittest/README.txt:
        rename *.t* to *-t* to be automake-friendly
      unittest/examples/Makefile.am:
        rename *.t* to *-t* to be automake-friendly
        simplify Makefile
      unittest/mysys/Makefile.am:
        rename *.t* to *-t* to be automake-friendly
        simplify Makefile
      unittest/mysys/my_atomic-t.c:
        move mysys/test_atomic.c to unittest, add GPL comment, fix warnings,
        convert to tap framework.
      unittest/mytap/t/Makefile.am:
        rename *.t* to *-t* to be automake-friendly
        simplify Makefile
      unittest/unit.pl:
        rename *.t* to *-t* to be automake-friendly
      740077bd
  32. 31 May, 2006 2 commits
    • unknown's avatar
      WL#2595 - atomic operations · 8b458177
      unknown authored
      BitKeeper/etc/ignore:
        Added mysys/test_atomic to the ignore list
      8b458177
    • unknown's avatar
      Bug#12096 · 32a7fafe
      unknown 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.
      
      
      config/ac-macros/compiler_flag.m4:
        Bug#12096
          Add macro to check if "--noexecstack" should be used when compiling assembler
      configure.in:
        Bug#12096
          Add macro to check if "--noexecstack" should be used when compiling assembler
      strings/Makefile.am:
        Bug#12096
          Automake knows how to handle assembler
      32a7fafe
  33. 24 May, 2006 3 commits
    • unknown's avatar
      configure.in: · eecb7c94
      unknown authored
        Update NDB version as well
      
      
      configure.in:
        Update NDB version as well
      eecb7c94
    • unknown's avatar
      configure.in: · 5ec9cff7
      unknown authored
        Stepped up to 5.0.23
      
      
      configure.in:
        Stepped up to 5.0.23
      5ec9cff7
    • unknown's avatar
      configure.in: · 172ad3de
      unknown authored
        Stepped up to 4.1.22
      
      
      configure.in:
        Stepped up to 4.1.22
      172ad3de