summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/datetime.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fix up some problems in handling of zic-style time zone names in datetimeTom Lane2006-10-171-227/+151
* pgindent run for 8.2.Bruce Momjian2006-10-041-48/+58
* Rename the recently-added pg_timezonenames view to pg_timezone_abbrevs,Tom Lane2006-09-161-7/+118
* Fix interval input parser so that fractional weeks and months areTom Lane2006-09-041-15/+29
* Remove hard-wired lists of timezone abbreviations in favor of providingTom Lane2006-07-251-390/+168
* Fix a passel of recently-committed violations of the rule 'thou shaltTom Lane2006-07-141-2/+1
* Allow timezone names in SQL strings,Bruce Momjian2006-06-071-5/+66
* Update copyright for 2006. Update scripts.Bruce Momjian2006-03-051-2/+2
* Remove comment on errno=0 lines, but add mention to port/strtol.c function.Bruce Momjian2005-12-021-11/+11
* Comment "errno = 0" in a more generic way.Bruce Momjian2005-12-011-11/+11
* Add comments about why errno is set to zero.Bruce Momjian2005-12-011-11/+11
* Check for overflow in strtol() while parsing datetime inputs.Tom Lane2005-12-011-1/+33
* Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian2005-11-221-9/+9
* Standard pgindent run for 8.1.Bruce Momjian2005-10-151-174/+163
* Allow times of 24:00:00 to match rounding behavior:Bruce Momjian2005-10-141-6/+10
* Fix (hopefully for the last time) problems with datetime values displayingTom Lane2005-10-091-4/+4
* Andrew pointed out that the current fix didn't handle dates that wereBruce Momjian2005-07-231-8/+8
* Code spacing improvement, particularly *tm spacing.Bruce Momjian2005-07-221-19/+19
* Update DAYS_PER_MONTH comment.Bruce Momjian2005-07-211-16/+16
* Remove unnecessary parentheses in assignments.Bruce Momjian2005-07-211-3/+3
* Add time/date macros for code clarity:Bruce Momjian2005-07-211-34/+34
* Change 5e0 to 5.0, for consistency.Bruce Momjian2005-07-121-2/+2
* Clean up the rather historically encumbered interface to now() andTom Lane2005-06-291-1/+37
* Display only 9 subsecond digits instead of 10 for time values, forBruce Momjian2005-05-271-7/+4
* Back out part of patch that should be applied later.Bruce Momjian2005-05-271-4/+7
* Fix compile of entab to use stdarg.h. Clean up includes.Bruce Momjian2005-05-271-7/+4
* Back out:Bruce Momjian2005-05-261-3/+3
* Display only 9 not 10 digits of precision for timestamp values whenBruce Momjian2005-05-261-3/+3
* Adjust datetime parsing to be more robust. We now pass the length of theNeil Conway2005-05-261-30/+47
* Remove more extraneous parentheses in date/time functions.Bruce Momjian2005-05-241-29/+29
* More macro cleanups for date/time.Bruce Momjian2005-05-231-8/+8
* Add datetime macros for constants, for clarity:Bruce Momjian2005-05-231-7/+7
* Remove unnecessary parentheses in datetime/timestamp code.Bruce Momjian2005-05-231-195/+192
* Remove excess parens, use Abs instead of : ?.Bruce Momjian2005-05-211-8/+8