aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/numeric.c
Commit message (Expand)AuthorAge
* Adjust the integer overflow tests in the numeric code.Dean Rasheed2021-08-06
* Fix division-by-zero error in to_char() with 'EEEE' format.Dean Rasheed2021-08-05
* Fix corner-case errors and loss of precision in numeric_power().Dean Rasheed2021-07-31
* Allow numeric scale to be negative or greater than precision.Dean Rasheed2021-07-26
* Fix numeric_mul() overflow due to too many digits after decimal point.Dean Rasheed2021-07-10
* Prevent numeric overflows in parallel numeric aggregates.Dean Rasheed2021-07-05
* Error message refactoringPeter Eisentraut2021-06-27
* Change return type of EXTRACT to numericPeter Eisentraut2021-04-06
* Add an explicit cast to double when using fabs().Dean Rasheed2021-01-05
* Fix numeric_power() when the exponent is INT_MIN.Dean Rasheed2021-01-05
* Update copyright for 2021Bruce Momjian2021-01-02
* Avoid gratuitous inaccuracy in numeric width_bucket().Tom Lane2020-10-08
* Fix numeric width_bucket() to allow its first argument to be infinite.Tom Lane2020-10-08
* Expose internal function for converting int64 to numericPeter Eisentraut2020-09-09
* Use plain memset() in numeric.c, not MemSet and friends.Tom Lane2020-09-08
* Frob numeric.c loop so that clang will auto-vectorize it too.Tom Lane2020-09-07
* Apply auto-vectorization to the inner loop of numeric multiplication.Tom Lane2020-09-06
* Support infinity and -infinity in the numeric data type.Tom Lane2020-07-22
* Add +(pg_lsn,numeric) and -(pg_lsn,numeric) operators.Fujii Masao2020-06-30
* Disallow factorial of negative numbersPeter Eisentraut2020-06-18
* Sync behavior of var_samp and stddev_samp for single NaN inputs.Tom Lane2020-06-13
* Fix mishandling of NaN counts in numeric_[avg_]combine.Tom Lane2020-06-11
* Run pgindent with new pg_bsd_indent version 2.1.1.Tom Lane2020-05-16
* Improve the performance and accuracy of numeric sqrt() and ln().Dean Rasheed2020-03-28
* Fix corner-case loss of precision in numeric ln().Dean Rasheed2020-03-01
* Move src/backend/utils/hash/hashfn.c to src/commonRobert Haas2020-02-27
* Add functions gcd() and lcm() for integer and numeric types.Dean Rasheed2020-01-25
* Add functions min_scale(numeric) and trim_scale(numeric).Tom Lane2020-01-06
* Update copyrights for 2020Bruce Momjian2020-01-01
* Add safeguards in LSN, numeric and float calculation for custom errorsMichael Paquier2019-08-05
* Phase 2 pgindent run for v12.Tom Lane2019-05-22
* Numeric error suppression in jsonpathAlexander Korotkov2019-03-16
* Move hash_any prototype from access/hash.h to utils/hashutils.hAlvaro Herrera2019-03-11
* Create the infrastructure for planner support functions.Tom Lane2019-02-09
* Update copyright for 2019Bruce Momjian2019-01-02
* Provide separate header file for built-in float typesTomas Vondra2018-07-29
* doc: Update redirecting linksPeter Eisentraut2018-07-16
* Fix partial aggregation for variance(int4) and related aggregates.Tom Lane2018-06-21
* Make new error code name match SQL standard more closelyPeter Eisentraut2018-06-11
* Make numeric power() handle NaNs according to the modern POSIX spec.Tom Lane2018-05-17
* Fix assorted compiler warnings seen in the buildfarm.Tom Lane2018-05-02
* Clean up warnings from -Wimplicit-fallthrough.Tom Lane2018-05-01
* Add window RANGE support for float4, float8, numeric.Tom Lane2018-02-24
* Remove useless use of bit-masking macrosPeter Eisentraut2018-01-16
* Update copyright for 2018Bruce Momjian2018-01-02
* Consistently use PG_INT(16|32|64)_(MIN|MAX).Andres Freund2017-12-12
* Use new overflow aware integer operations.Andres Freund2017-12-12
* Change TRUE/FALSE to true/falsePeter Eisentraut2017-11-08
* Replace remaining uses of pq_sendint with pq_sendint{8,16,32}.Andres Freund2017-10-11
* Fix behavior when converting a float infinity to numeric.Tom Lane2017-09-27