We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f541236 commit 543e4afCopy full SHA for 543e4af
src/expr/impl/src/scalar/arithmetic_op.rs
@@ -577,19 +577,22 @@ pub fn gamma_f64(input: F64) -> Result<F64> {
577
///
578
/// statement error
579
/// SELECT lgamma('-1'::float8);
580
-///
+///
581
/// query R
582
/// SELECT lgamma('-1000.5'::float8);
583
/// ----
584
/// -5914.437701116853
585
586
587
/// SELECT gamma('0'::float8);
588
589
590
/// SELECT lgamma('1000'::float8);
591
592
/// 5905.220423209181
593
594
+/// statement error
595
+/// SELECT gamma('1e308'::float8);
596
/// ```
597
#[function("lgamma(float8) -> float8")]
598
pub fn lgamma_f64(input: F64) -> Result<F64> {
0 commit comments