summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/datetime.c
Commit message (Expand)AuthorAgeFilesLines
* Fix parsing of time string followed by yesterday/today/tomorrow.Robert Haas2011-08-301-14/+9
* Pgindent run before 9.1 beta2.Bruce Momjian2011-06-091-3/+4
* Add C comment about why we don't spell out "month" in interval values.Bruce Momjian2011-05-241-0/+5
* Prevent datebsearch() from crashing on base == NULL && nel == 0.Tom Lane2011-05-101-14/+17
* pgindent run before PG 9.1 beta 1.Bruce Momjian2011-04-101-1/+1
* Revise the API for GUC variable assign hooks.Tom Lane2011-04-071-14/+19
* Use macros for time-based constants, rather than constants.Bruce Momjian2011-03-121-23/+26
* Stamp copyrights for year 2011.Bruce Momjian2011-01-011-1/+1
* Re-allow input of Julian dates prior to 0001-01-01 AD.Tom Lane2010-09-221-12/+25
* Remove cvs keywords from all files.Magnus Hagander2010-09-201-1/+1
* Fix an ancient typo that prevented the detection of conflicting fields whenTom Lane2010-08-021-2/+2
* Adjust comments about avoiding use of printf's %.*s.Tom Lane2010-05-091-6/+4
* Work around a subtle portability problem in use of printf %s format.Tom Lane2010-05-081-1/+10
* Update copyright for the year 2010.Bruce Momjian2010-01-021-2/+2
* Fix overflow for INTERVAL 'x ms' where x is more than a couple million,Tom Lane2009-08-181-1/+4
* 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian2009-06-111-118/+120
* Make handling of INTERVAL DAY TO MINUTE and INTERVAL DAY TO SECOND inputTom Lane2009-06-101-4/+4
* Fix DecodeInterval to report an error for multiple occurrences of DAY, WEEK,Tom Lane2009-06-011-8/+8
* Remove the useless and rather inconsistent return values of EncodeDateOnly,Tom Lane2009-05-261-25/+9
* When checking for datetime field overflow, we should allow a fractional-secondTom Lane2009-05-011-11/+10
* Remove the datetime keywords ABSTIME and RELTIME, which we'd been treating asTom Lane2009-03-221-3/+1
* Improve zero-year comments.Bruce Momjian2009-03-171-2/+2
* Document that datetime year '0' is considered in a recent century, notBruce Momjian2009-03-171-2/+2
* Update copyright for 2009.Bruce Momjian2009-01-011-2/+2
* Clean up the ancient decision to show only two fractional-seconds digitsTom Lane2008-11-121-546/+298
* Add support for input and output of interval values formatted per ISO 8601;Tom Lane2008-11-111-14/+356
* Add a new GUC variable called "IntervalStyle" that decouples interval outputTom Lane2008-11-091-44/+200
* Fix recently added code for SQL years-months interval syntax so thatTom Lane2008-11-081-2/+2
* Fix improper display of fractional seconds in interval valuesTom Lane2008-10-021-2/+2
* Fix integral timestamps so the output is consistent in all cases toBruce Momjian2008-09-241-9/+9
* Clean up a couple of weird corner cases in interval parsing: make -yyyy-mm beTom Lane2008-09-161-31/+13
* Adjust the parser to accept the typename syntax INTERVAL ... SECOND(n)Tom Lane2008-09-111-4/+22
* Make our parsing of INTERVAL literals spec-compliant (or at least a heck ofTom Lane2008-09-101-12/+73
* Fix datetime input functions to correctly detect integer overflow whenTom Lane2008-06-091-12/+29
* Restructure some header files a bit, in particular heapam.h, by removing someAlvaro Herrera2008-05-121-2/+1
* Simplify and standardize conversions between TEXT datums and ordinary CTom Lane2008-03-251-7/+4
* Reject year zero during datetime input, except when it's a 2-digit yearTom Lane2008-02-251-9/+15
* Fix datetime input to behave correctly for Feb 29 in years BC.Tom Lane2008-02-251-99/+93
* Replace time_t with pg_time_t (same values, but always int64) in on-diskTom Lane2008-02-171-4/+6
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-011-2/+2
* pgindent run for 8.3.Bruce Momjian2007-11-151-25/+26
* Switch over to using the src/timezone functions for formatting timestampsTom Lane2007-08-041-4/+4
* Fix DecodeDateTime to allow timezone to appear before year. This hadTom Lane2007-06-121-4/+10
* Fix a bug in input processing for the "interval" type. Previously,Neil Conway2007-05-291-2/+14
* Code cleanup: use "bool" for Boolean variables, rather than "int".Neil Conway2007-05-271-15/+15
* Fix date/time formats for XML Schema output.Peter Eisentraut2007-03-011-9/+18
* Add "isodow" option to EXTRACT() and date_part() where Sunday = 7.Bruce Momjian2007-02-191-1/+2
* Add two new format fields for use with to_char(), to_date() andBruce Momjian2007-02-161-1/+2
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-051-2/+2
* Fix up timetz input so that a date is required only when the specifiedTom Lane2006-10-181-6/+40