summaryrefslogtreecommitdiff
path: root/src/test/regress/sql/numeric.sql
AgeCommit message (Expand)Author
13 daysAllow width_bucket()'s "operand" input to be NaN.Tom Lane
2025-01-22Support RN (roman-numeral format) in to_number().Tom Lane
2024-10-04Speed up numeric division by always using the "fast" algorithm.Dean Rasheed
2024-09-26Modernize to_char's Roman-numeral code, fixing overflow problems.Tom Lane
2024-07-08Fix scale clamping in numeric round() and trunc().Dean Rasheed
2023-03-31Further tweaking of width_bucket() edge cases.Tom Lane
2023-03-30Avoid overflow in width_bucket_float8().Tom Lane
2023-03-14Fix corner case bug in numeric to_char() some more.Tom Lane
2023-02-27Rework pg_input_error_message(), now renamed pg_input_error_info()Michael Paquier
2023-02-04Allow underscores in integer and numeric constants.Dean Rasheed
2023-01-23Add non-decimal integer support to type numeric.Dean Rasheed
2022-12-09Convert a few datatype input functions to use "soft" error reporting.Tom Lane
2022-10-20Improve the accuracy of numeric power() for integer exponents.Dean Rasheed
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-26Allow numeric scale to be negative or greater than precision.Dean Rasheed
2021-07-10Fix numeric_mul() overflow due to too many digits after decimal point.Dean Rasheed
2021-07-05Prevent numeric overflows in parallel numeric aggregates.Dean Rasheed
2021-01-05Fix numeric_power() when the exponent is INT_MIN.Dean Rasheed
2020-12-15Clean up ancient test stylePeter Eisentraut
2020-10-08Avoid gratuitous inaccuracy in numeric width_bucket().Tom Lane
2020-10-08Fix numeric width_bucket() to allow its first argument to be infinite.Tom Lane
2020-09-17Remove factorial operators, leaving only the factorial() function.Tom Lane
2020-09-09Add some more numeric test coveragePeter Eisentraut
2020-07-22Support infinity and -infinity in the numeric data type.Tom Lane
2020-06-30Add +(pg_lsn,numeric) and -(pg_lsn,numeric) operators.Fujii Masao
2020-06-18Expand tests for factorialPeter Eisentraut
2020-03-28Improve the performance and accuracy of numeric sqrt() and ln().Dean Rasheed
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
2018-05-17Make numeric power() handle NaNs according to the modern POSIX spec.Tom Lane
2017-11-18Fix quoted-substring handling in format parsing for to_char/to_number/etc.Tom Lane
2017-11-17Prevent to_number() from losing data when template doesn't match exactly.Tom Lane
2017-09-27Fix behavior when converting a float infinity to numeric.Tom Lane
2016-09-02Speed up SUM calculation in numeric aggregates.Heikki Linnakangas
2016-01-05Add scale(numeric)Alvaro Herrera
2015-11-14Improve type numeric's calculations for ln(), log(), exp(), pow().Tom Lane
2015-09-21Fix possible internal overflow in numeric multiplication.Tom Lane
2015-07-03Add documentation and regression tests concerning rounding of numerics.Tom Lane
2015-03-23to_char: revert cc0d90b73b2e6dd2f301d46818a7265742c41a14Bruce Momjian
2015-03-22to_char(float4/8): don't print "junk" digitsBruce Momjian
2015-03-22to_char(float4/8): zero pad to specified lengthBruce Momjian
2014-12-18Ensure variables live across calls in generate_series(numeric, numeric).Fujii Masao
2014-11-11Add generate_series(numeric, numeric).Fujii Masao
2014-09-12Fix power_var_int() for large integer exponents.Tom Lane
2011-09-07Fix corner case bug in numeric to_char().Tom Lane
2010-11-23Remove useless whitespace at end of linesPeter Eisentraut
2009-08-10Support EEEE (scientific notation) in to_char().Tom Lane