summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/formatting.c
Commit message (Expand)AuthorAgeFilesLines
* Remove unused includesPeter Eisentraut2021-12-011-1/+0
* Fix out-of-bound memory access for interval -> char conversionMichael Paquier2021-04-121-10/+53
* Update copyright for 2021Bruce Momjian2021-01-021-1/+1
* Fix handling of BC years in to_date/to_timestamp.Tom Lane2020-09-301-2/+5
* Support for ISO 8601 in the jsonpath .datetime() methodAlexander Korotkov2020-09-291-3/+17
* Expose internal function for converting int64 to numericPeter Eisentraut2020-09-091-13/+6
* Yet more elimination of dead stores and useless initializations.Tom Lane2020-09-051-10/+9
* Remove still more useless assignments.Tom Lane2020-09-041-15/+12
* Replace remaining StrNCpy() by strlcpy()Peter Eisentraut2020-08-101-4/+4
* Support infinity and -infinity in the numeric data type.Tom Lane2020-07-221-3/+6
* Run pgindent with new pg_bsd_indent version 2.1.1.Tom Lane2020-05-161-1/+1
* Dial back -Wimplicit-fallthrough to level 3Alvaro Herrera2020-05-131-1/+1
* Add -Wimplicit-fallthrough to CFLAGS and CXXFLAGSAlvaro Herrera2020-05-121-1/+1
* Get rid of trailing semicolons in C macro definitions.Tom Lane2020-05-011-2/+4
* Allow to_date/to_timestamp to recognize non-English month/day names.Tom Lane2020-03-031-30/+145
* Assume that we have <wchar.h>.Tom Lane2020-02-211-3/+1
* Clean up newlines following left parenthesesAlvaro Herrera2020-01-301-2/+1
* Fix an oversight in commit 4c70098ff.Tom Lane2020-01-231-8/+1
* Clean up formatting.c's logic for matching constant strings.Tom Lane2020-01-231-89/+83
* Update copyrights for 2020Bruce Momjian2020-01-011-1/+1
* Fix some compiler warnings with timestamp parsing in formatting.cMichael Paquier2019-12-111-1/+8
* Error suppression support for upcoming jsonpath .datetime() methodAlexander Korotkov2019-09-251-187/+350
* Implement parse_datetime() functionAlexander Korotkov2019-09-251-4/+287
* Implement standard datetime parsing modeAlexander Korotkov2019-09-251-40/+104
* Support for SSSSS datetime format patternAlexander Korotkov2019-09-161-4/+8
* Support for FF1-FF6 datetime format patternsAlexander Korotkov2019-09-161-21/+78
* Fix memory leak with lower, upper and initcap with ICU-provided collationsMichael Paquier2019-09-031-0/+3
* Fix inconsistencies and typos in the treeMichael Paquier2019-07-161-2/+0
* Phase 2 pgindent run for v12.Tom Lane2019-05-221-6/+6
* Initial pgindent run for v12.Tom Lane2019-05-221-4/+7
* Unify error messagesAlvaro Herrera2019-04-241-3/+6
* More unconstify usePeter Eisentraut2019-02-131-1/+1
* Update copyright for 2019Bruce Momjian2019-01-021-1/+1
* Fix spelling errors and typos in commentsMagnus Hagander2018-11-021-1/+1
* Be smarter about age-counter overflow in formatting.c caches.Tom Lane2018-10-161-32/+38
* Avoid statically allocating formatting.c's format string caches.Tom Lane2018-10-161-38/+56
* Remove deprecated abstime, reltime, tinterval datatypes.Andres Freund2018-10-111-1/+0
* Don't use is_infinite() where isinf() will do.Tom Lane2018-10-061-2/+2
* Fix handling of format string text characters in to_timestamp()/to_date()Alexander Korotkov2018-09-201-2/+17
* Improve behavior of to_timestamp()/to_date() functionsAlexander Korotkov2018-09-091-14/+98
* Provide separate header file for built-in float typesTomas Vondra2018-07-291-0/+1
* Post-feature-freeze pgindent run.Tom Lane2018-04-261-1/+1
* Fix more format truncation issuesPeter Eisentraut2018-03-151-23/+10
* Implement TZH and TZM timestamp format patternsAndrew Dunstan2018-01-091-4/+65
* Update copyright for 2018Bruce Momjian2018-01-021-1/+1
* Improve to_date/to_number/to_timestamp behavior with multibyte characters.Tom Lane2017-11-181-27/+41
* Fix quoted-substring handling in format parsing for to_char/to_number/etc.Tom Lane2017-11-181-44/+26
* Prevent to_number() from losing data when template doesn't match exactly.Tom Lane2017-11-171-26/+108
* Change TRUE/FALSE to true/falsePeter Eisentraut2017-11-081-136/+136
* Assume wcstombs(), towlower(), and sibling functions are always present.Tom Lane2017-09-221-6/+0