summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/datetime.c
AgeCommit message (Expand)Author
2023-03-17Refactor datetime functions' timezone lookup code to reduce duplication.Tom Lane
2023-03-16Tighten error checks in datetime input, and remove bogus "ISO" format.Tom Lane
2023-03-09Reject combining "epoch" and "infinity" with other datetime fields.Tom Lane
2023-02-20Fix parsing of ISO-8601 interval fields with exponential notation.Tom Lane
2023-02-12Avoid dereferencing an undefined pointer in DecodeInterval().Tom Lane
2023-01-02Update copyright for 2023Bruce Momjian
2023-01-01Accept "+infinity" in date and timestamp[tz] input.Tom Lane
2022-12-21Switch some system functions to use get_call_result_type()Michael Paquier
2022-12-09Convert datetime input functions to use "soft" error reporting.Tom Lane
2022-12-09Allow DateTimeParseError to handle bad-timezone error messages.Tom Lane
2022-12-09Const-ify a couple of datetime parsing subroutines.Tom Lane
2022-10-18Rename SetSingleFuncCall() to InitMaterializedSRF()Michael Paquier
2022-10-14Store GUC data in a memory context, instead of using malloc().Tom Lane
2022-10-10Use C library functions instead of Abs() for int64Peter Eisentraut
2022-10-07Remove unnecessary uses of Abs()Peter Eisentraut
2022-10-05Rename shadowed local variablesDavid Rowley
2022-09-20Harmonize more parameter names in bulk.Peter Geoghegan
2022-07-16Replace many MemSet calls with struct initializationPeter Eisentraut
2022-04-03Fix portability issues in datetime parsing.Tom Lane
2022-04-02Fix overflow hazards in interval input and output conversions.Tom Lane
2022-03-07Create routine able to set single-call SRFs for Materialize modeMichael Paquier
2022-01-08Update copyright for 2022Bruce Momjian
2021-08-03interval: round values when spilling to monthsBruce Momjian
2021-05-01Revert use singular for -1 (commits 9ee7d533da and 5da9868ed9Bruce Momjian
2021-03-30In messages, use singular nouns for -1, like we do for +1.Bruce Momjian
2021-01-02Update copyright for 2021Bruce Momjian
2020-09-28Cache the result of converting now() to a struct pg_tm.Tom Lane
2020-06-29Mop up some no-longer-necessary hacks around printf %.*s format.Tom Lane
2020-06-04Reject "23:59:60.nnn" in datetime input.Tom Lane
2020-05-16Run pgindent with new pg_bsd_indent version 2.1.1.Tom Lane
2020-05-14Initial pgindent and pgperltidy run for v13.Tom Lane
2020-03-17Avoid holding a directory FD open across assorted SRF calls.Tom Lane
2020-02-01Optimizations for integer to decimal output.Andrew Gierth
2020-01-01Update copyrights for 2020Bruce Momjian
2019-11-28Remove useless "return;" linesAlvaro Herrera
2019-11-12Make the order of the header file includes consistent in backend modules.Amit Kapila
2019-08-07Fix some incorrect parsing of time with time zone stringsMichael Paquier
2019-07-26Tweak our special-case logic for the IANA "Factory" timezone.Tom Lane
2019-07-22Fix inconsistencies and typos in the treeMichael Paquier
2019-07-01Fix many typos and inconsistenciesMichael Paquier
2019-06-30Remove explicit error handling for obsolete date/time valuesPeter Eisentraut
2019-05-22Phase 2 pgindent run for v12.Tom Lane
2019-02-09Create the infrastructure for planner support functions.Tom Lane
2019-01-02Update copyright for 2019Bruce Momjian
2018-11-21Remove WITH OIDS support, change oid catalog column visibility.Andres Freund
2018-10-17Const-ify a few more large static tables.Tom Lane
2018-09-08Remove duplicated words split across lines in commentsMichael Paquier
2018-07-11Rethink how to get float.h in old Windows API for isnan/isinfAlvaro Herrera
2018-05-09Update time zone data files to tzdata release 2018e.Tom Lane
2018-05-01Clean up warnings from -Wimplicit-fallthrough.Tom Lane