summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/timestamp.c
Commit message (Expand)AuthorAgeFilesLines
* pgindent run for release 9.3Bruce Momjian2013-05-291-6/+6
* Clean up references to SQL92Peter Eisentraut2013-04-201-4/+4
* Fix overflow check in tm2timestamp (this time for sure).Tom Lane2013-03-041-2/+3
* Reject nonzero day fields in AT TIME ZONE INTERVAL functions.Tom Lane2013-01-311-4/+4
* Update copyrights for 2013Bruce Momjian2013-01-011-1/+1
* Make the streaming replication protocol messages architecture-independent.Heikki Linnakangas2012-11-071-0/+44
* Fix to_date() and to_timestamp() to allow specification of the day ofBruce Momjian2012-09-031-4/+8
* On second thought, explain why date_trunc("week") on interval values isBruce Momjian2012-08-151-4/+11
* Run pgindent on 9.2 source tree in preparation for first 9.3Bruce Momjian2012-06-101-9/+9
* Measure epoch of timestamp-without-time-zone from local not UTC midnight.Tom Lane2012-04-101-22/+3
* Code review for protransform patches.Tom Lane2012-03-231-19/+11
* Add const qualifier to tzn returned by timestamp2tm()Peter Eisentraut2012-03-151-4/+4
* Remove unused tzn arguments for timestamp2tm()Peter Eisentraut2012-03-151-16/+10
* Improve EncodeDateTime and EncodeTimeOnly APIsPeter Eisentraut2012-03-141-4/+3
* Add a comment to AdjustIntervalForTypmod to reduce chance of future bugs.Robert Haas2012-02-091-1/+2
* Improve interval_transform function to detect a few more cases.Robert Haas2012-02-091-2/+7
* Add transform functions for various temporal typmod coercisions.Robert Haas2012-02-081-0/+86
* Update copyright notices for year 2012.Bruce Momjian2012-01-011-1/+1
* Create a "sort support" interface API for faster sorting.Tom Lane2011-12-071-0/+19
* Use macros for time-based constants, rather than constants.Bruce Momjian2011-03-121-2/+2
* Stamp copyrights for year 2011.Bruce Momjian2011-01-011-1/+1
* Remove cvs keywords from all files.Magnus Hagander2010-09-201-1/+1
* pgindent run for 9.0Bruce Momjian2010-02-261-5/+5
* Update copyright for the year 2010.Bruce Momjian2010-01-021-2/+2
* interval_abs():Bruce Momjian2009-11-101-1/+7
* Tigthen binary receive functions so that they reject values that the textHeikki Linnakangas2009-09-041-1/+6
* Use floor() not rint() when reducing precision of fractional seconds inTom Lane2009-07-061-7/+7
* 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian2009-06-111-35/+36
* Change AdjustIntervalForTypmod to not discard higher-order field values on theTom Lane2009-06-011-53/+27
* Remove the useless and rather inconsistent return values of EncodeDateOnly,Tom Lane2009-05-261-3/+2
* Rewrite interval_hash() so that the hashcodes are equal for values thatTom Lane2009-04-041-34/+29
* Clean up the code for to_timestamp's conversion of year plus ISO day numberTom Lane2009-03-151-6/+1
* Update copyright for 2009.Bruce Momjian2009-01-011-2/+2
* Add support for input and output of interval values formatted per ISO 8601;Tom Lane2008-11-111-2/+9
* Add a new GUC variable called "IntervalStyle" that decouples interval outputTom Lane2008-11-091-2/+2
* Fix EncodeSpecialTimestamp to throw error on unrecognized input, rather thanTom Lane2008-10-141-8/+6
* Adjust the parser to accept the typename syntax INTERVAL ... SECOND(n)Tom Lane2008-09-111-3/+3
* Make our parsing of INTERVAL literals spec-compliant (or at least a heck ofTom Lane2008-09-101-3/+9
* Fix AT TIME ZONE (in all three variants) so that we first try to interpretTom Lane2008-07-071-66/+74
* Add timestamp and timestamptz versions of generate_series().Tom Lane2008-05-041-1/+180
* Add pg_conf_load_time() function to report when the Postgres configurationTom Lane2008-05-041-2/+10
* Simplify and standardize conversions between TEXT datums and ordinary CTom Lane2008-03-251-40/+30
* Get rid of a bunch of #ifdef HAVE_INT64_TIMESTAMP conditionals by inventingTom Lane2008-03-211-66/+17
* Replace time_t with pg_time_t (same values, but always int64) in on-diskTom Lane2008-02-171-6/+16
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-011-2/+2
* pgindent run for 8.3.Bruce Momjian2007-11-151-41/+41
* Fix overflow in extract(epoch from interval) for intervals exceeding 68 years.Tom Lane2007-09-161-3/+3
* Switch over to using the src/timezone functions for formatting timestampsTom Lane2007-08-041-7/+7
* Properly adjust age() seconds to match the sign of the larger units.Bruce Momjian2007-07-181-2/+26
* Fix up hash functions for datetime datatypes so that they don't takeTom Lane2007-07-061-9/+31