summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/numeric.c
AgeCommit message (Expand)Author
2022-03-03Clean up assorted failures under clang's -fsanitize=undefined checks.Tom Lane
2021-10-06Fix corner-case loss of precision in numeric_power().Dean Rasheed
2021-08-06Adjust the integer overflow tests in the numeric code.Dean Rasheed
2021-08-05Fix division-by-zero error in to_char() with 'EEEE' format.Dean Rasheed
2021-07-31Fix corner-case errors and loss of precision in numeric_power().Dean Rasheed
2021-07-10Fix numeric_mul() overflow due to too many digits after decimal point.Dean Rasheed
2021-01-05Add an explicit cast to double when using fabs().Dean Rasheed
2021-01-05Fix numeric_power() when the exponent is INT_MIN.Dean Rasheed
2020-06-11Fix mishandling of NaN counts in numeric_[avg_]combine.Tom Lane
2020-05-16Run pgindent with new pg_bsd_indent version 2.1.1.Tom Lane
2020-03-28Improve the performance and accuracy of numeric sqrt() and ln().Dean Rasheed
2020-03-01Fix corner-case loss of precision in numeric ln().Dean Rasheed
2020-02-27Move src/backend/utils/hash/hashfn.c to src/commonRobert Haas
2020-01-25Add functions gcd() and lcm() for integer and numeric types.Dean Rasheed
2020-01-06Add functions min_scale(numeric) and trim_scale(numeric).Tom Lane
2020-01-01Update copyrights for 2020Bruce Momjian
2019-08-05Add safeguards in LSN, numeric and float calculation for custom errorsMichael Paquier
2019-05-22Phase 2 pgindent run for v12.Tom Lane
2019-03-16Numeric error suppression in jsonpathAlexander Korotkov
2019-03-11Move hash_any prototype from access/hash.h to utils/hashutils.hAlvaro Herrera
2019-02-09Create the infrastructure for planner support functions.Tom Lane
2019-01-02Update copyright for 2019Bruce Momjian
2018-07-29Provide separate header file for built-in float typesTomas Vondra
2018-07-16doc: Update redirecting linksPeter Eisentraut
2018-06-21Fix partial aggregation for variance(int4) and related aggregates.Tom Lane
2018-06-11Make new error code name match SQL standard more closelyPeter Eisentraut
2018-05-17Make numeric power() handle NaNs according to the modern POSIX spec.Tom Lane
2018-05-02Fix assorted compiler warnings seen in the buildfarm.Tom Lane
2018-05-01Clean up warnings from -Wimplicit-fallthrough.Tom Lane
2018-02-24Add window RANGE support for float4, float8, numeric.Tom Lane
2018-01-16Remove useless use of bit-masking macrosPeter Eisentraut
2018-01-02Update copyright for 2018Bruce Momjian
2017-12-12Consistently use PG_INT(16|32|64)_(MIN|MAX).Andres Freund
2017-12-12Use new overflow aware integer operations.Andres Freund
2017-11-08Change TRUE/FALSE to true/falsePeter Eisentraut
2017-10-11Replace remaining uses of pq_sendint with pq_sendint{8,16,32}.Andres Freund
2017-09-27Fix behavior when converting a float infinity to numeric.Tom Lane
2017-09-11Constify numeric.c.Andres Freund
2017-09-01Fix assorted carelessness about Datum vs. int64 vs. uint64Robert Haas
2017-08-31Introduce 64-bit hash functions with a 64-bit seed.Robert Haas
2017-06-21Manually un-break a few URLs that pgindent used to insist on splitting.Tom Lane
2017-06-21Phase 3 of pgindent updates.Tom Lane
2017-06-21Phase 2 of pgindent updates.Tom Lane
2017-03-12Use wrappers of PG_DETOAST_DATUM_PACKED() more.Noah Misch
2017-02-21Make more use of castNode()Peter Eisentraut
2017-01-18Make messages mentioning type names more uniformAlvaro Herrera
2017-01-17Generate fmgr prototypes automaticallyPeter Eisentraut
2017-01-03Update copyright via script for 2017Bruce Momjian
2016-09-03Fix multiple bugs in numeric_poly_deserialize().Tom Lane
2016-09-02Speed up SUM calculation in numeric aggregates.Heikki Linnakangas