An error occurred fetching the project authors.
  1. 24 Sep, 2005 1 commit
  2. 05 Jul, 2005 1 commit
    • kent@mysql.com's avatar
      Makefile.am: · a7be4216
      kent@mysql.com authored
        Added -I$(top_builddir)/include for searching
        generated header files, when builddir != srcdir
      a7be4216
  3. 20 Jun, 2005 1 commit
    • kent@mysql.com's avatar
      Makefile.am: · fb09633e
      kent@mysql.com authored
        Corrected dependency for "lex_hash.h", to avoid occasional make failure
      fb09633e
  4. 23 Mar, 2005 1 commit
  5. 15 Sep, 2004 1 commit
    • mikael@mc04.(none)'s avatar
      logging_ok: · 72017f8d
      mikael@mc04.(none) authored
        Logging to logging@openlogging.org accepted
      SCI_Transporter.hpp, SCI_Transporter.cpp:
        Major fix-up of SCI Transporter, fixed so that it works with single card, fixed wrap around, added lots of DBUG statements, merged with new transporter handling
      TransporterRegistry.cpp:
        Some fixes for wrap around needed plus DBUG handling
      TCP_Transporter.hpp, TCP_Transporter.cpp:
        Added DBUG statements
      SHM_Transporter.hpp, SHM_Transporter.cpp:
        Fixed SHM Transporter
      SHM_Buffer.hpp:
        Fixed SHM Buffer to handle wrap around properly
      IPCConfig.cpp:
        Fixed up config of SCI
      SocketServer.cpp:
        Added DBUG support for SocketServer threads
      ConfigInfo.cpp:
        Config changes for SCI
      TransporterDefinitions.hpp, mgmapi_config_parameters.h:
        SCI fixes
      Makefile.am, type_ndbapitools.mk.am, type_ndbapitest.mk.am:
        Added SCI library path to Makefiles
      configure.in:
        Fixed small bug with shared mem and sci together in configure
      acinclude.m4:
        Added possibility of providing SCI library path in confgure
      72017f8d
  6. 06 Sep, 2004 1 commit
    • guilhem@mysql.com's avatar
      Dependency fix. We observed that doing any change to class THD in sql_class.h... · 01ad1bb5
      guilhem@mysql.com authored
      Dependency fix. We observed that doing any change to class THD in sql_class.h resulted in mysqld going crazy (parsing errors,
      query cache errors in query_cache.test). This is because sql_yacc.cc depends on several .h files but those were not listed in
      the dependencies of sql_yacc.o. The present patch does fix the issue; but my auto*-expert colleagues may have a better one.
      01ad1bb5
  7. 20 Aug, 2004 1 commit
  8. 19 Aug, 2004 1 commit
  9. 17 Aug, 2004 1 commit
  10. 13 Aug, 2004 1 commit
  11. 30 Jul, 2004 1 commit
  12. 24 Jul, 2004 1 commit
    • konstantin@mysql.com's avatar
      WL#1518, "make bundled zlib usable for unix builds": · 569d3c84
      konstantin@mysql.com authored
      required autotools macro written and deployed in all apropriate Makefile.ams.
      Use cases checked:
      - linux, standard location of zlib, no ndb
      - linux, standard locatoin of zlib, with ndb
      - linux, non-standard location of zlib, no ndb
      - hpux11, use of bundled zlib, no ndb 
      The only non-checked case is non-standard location of zlib (or use of bundled
      zlib) + ndb. I wasn't able to check it as ndb/ just won't compile on beasts 
      like AIX52 or HPUX11, where such a check is possible. It didn't compile 
      there before as these systems dont't have installed zlib, so nothing got broken ;)
      569d3c84
  13. 22 Jul, 2004 1 commit
  14. 27 Jun, 2004 2 commits
  15. 24 Jun, 2004 1 commit
    • konstantin@mysql.com's avatar
      Fix for Bug#4030 "Client side conversion string -> date type doesn't · a30fcdc6
      konstantin@mysql.com authored
      work (prepared statements)" and after-review fixes:
      - str_to_TIME renamed to str_to_datetime to pair with str_to_time
      - functions str_to_time and str_to_TIME moved to sql-common
      - send_data_str now supports MYSQL_TYPE_TIME, MYSQL_TIME_DATE,
        MYSQL_TIME_DATETIME types of user input buffers.
      - few more comments in the client library
      - a test case added.
      a30fcdc6
  16. 23 Jun, 2004 1 commit
  17. 22 Jun, 2004 2 commits
  18. 18 Jun, 2004 1 commit
    • dlenev@brandersnatch.localdomain's avatar
      WL#1264 "Per-thread time zone support infrastructure". · 09ba29e5
      dlenev@brandersnatch.localdomain authored
      Added basic per-thread time zone functionality (based on public
      domain elsie-code). Now user can select current time zone
      (from the list of time zones described in system tables).
      All NOW-like functions honor this time zone, values of TIMESTAMP
      type are interpreted as values in this time zone, so now
      our TIMESTAMP type behaves similar to Oracle's TIMESTAMP WITH
      LOCAL TIME ZONE (or proper PostgresSQL type).
        
      WL#1266 "CONVERT_TZ() - basic time with time zone conversion 
      function".
        
      Fixed problems described in Bug #2336 (Different number of warnings 
      when inserting bad datetime as string or as number). This required
      reworking of datetime realted warning hadling (they now generated 
      at Field object level not in conversion functions).
        
      Optimization: Now Field class descendants use table->in_use member
      instead of current_thd macro.
      09ba29e5
  19. 22 May, 2004 1 commit
  20. 21 May, 2004 1 commit
  21. 19 May, 2004 1 commit
  22. 15 Apr, 2004 1 commit
  23. 13 Apr, 2004 1 commit
  24. 03 Feb, 2004 1 commit
  25. 12 Nov, 2003 1 commit
  26. 03 Nov, 2003 1 commit
    • monty@narttu.mysql.fi's avatar
      Simplified 'wrong xxx name' error messages by introducing 'general' ER_WRONG_NAME error · a444a344
      monty@narttu.mysql.fi authored
      Cleaned up (and disabled part of) date/time/datetime format patch. One can't anymore change default read/write date/time/formats.
      This is becasue the non standard datetime formats can't be compared as strings and MySQL does still a lot of datetime comparisons as strings
      Changed flag argument to str_to_TIME() and get_date() from bool to uint
      Removed THD from str_to_xxxx functions and Item class.
      Fixed core dump when doing --print-defaults
      Move some common string functions to strfunc.cc
      Dates as strings are now of type my_charset_bin instead of default_charset()
      Introduce IDENT_QUOTED to not have to create an extra copy of simple identifiers (all chars < 128)
      Removed xxx_FORMAT_TYPE enums and replaced them with the old TIMESTAMP_xxx enums
      Renamed some TIMESTAMP_xxx enums to more appropriate names
      Use defines instead of integers for date/time/datetime string lengths
      Added to build system and use the new my_strtoll10() function.
      a444a344
  27. 06 Jul, 2003 1 commit
  28. 20 Jun, 2003 1 commit
  29. 14 Jun, 2003 1 commit
  30. 04 Jun, 2003 1 commit
    • monty@narttu.mysql.fi's avatar
      Added SQLSTATE to client/server protocol · 23145cfe
      monty@narttu.mysql.fi authored
      bmove_allign -> bmove_align
      Added OLAP function ROLLUP
      Split mysql_fix_privilege_tables to a script and a .sql data file
      Added new (MEMROOT*) functions to avoid calling current_thd() when creating some common objects.
      Added table_alias_charset, for easier --lower-case-table-name handling
      Better SQL_MODE handling (Setting complex options also sets sub options)
      New (faster) assembler string functions for x86
      23145cfe
  31. 31 May, 2003 1 commit
    • hf@deer.(none)'s avatar
      SCRUM: · 02d3d7e8
      hf@deer.(none) authored
      Here is another pack of changes about gathering common client code in
      sql-common/client.c.
      Now i symlink the client.c from sql/ and libmysql/. These directories
      have client_settings.h files to be included to client.c. It contains
      defines and declarations to compile client.c in appropriate manner.
      Also i've added include/sql_common.h, containing declarations of what
      is exported from client.c
      
      I removed as many #ifdef-s from client.c as i dared to. I think it's better
      push it with some extra #ifdef-s now (of course, if everythihg besides it is
      ok) so other people can check the code.
      02d3d7e8
  32. 30 May, 2003 1 commit
  33. 23 May, 2003 1 commit
  34. 23 Apr, 2003 1 commit
  35. 27 Jan, 2003 1 commit
    • lenz@mysql.com's avatar
      - added a dummy file "reservedwords.texi" to the BK tree and the Makefiles, · 82aca82d
      lenz@mysql.com authored
         so it's part of the distribution (manual.texi includes this file)
         It will be replaced with the correct one from the mysqldoc tree before
         building the distribution
       - removed generation and inclusion of MIRRORS file, since the mirror list
         is no longer part of manual.texi anyway
       - replaced YFLAGS with AM_YFLAGS in sql/Makefile.am to make automake happy
       - Redirect standard error when checking for dpkg-architecture in ltconfig
         to avoid error message showing during configuration
      82aca82d
  36. 20 Dec, 2002 1 commit
  37. 11 Dec, 2002 1 commit
  38. 26 Nov, 2002 1 commit