Skip to content

Commit 543e4af

Browse files
committed
chore: fix format check
Signed-off-by: Alan Tang <[email protected]>
1 parent f541236 commit 543e4af

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/expr/impl/src/scalar/arithmetic_op.rs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -577,19 +577,22 @@ pub fn gamma_f64(input: F64) -> Result<F64> {
577577
///
578578
/// statement error
579579
/// SELECT lgamma('-1'::float8);
580-
///
580+
///
581581
/// query R
582582
/// SELECT lgamma('-1000.5'::float8);
583583
/// ----
584584
/// -5914.437701116853
585-
///
585+
///
586586
/// statement error
587587
/// SELECT gamma('0'::float8);
588-
///
588+
///
589589
/// query R
590590
/// SELECT lgamma('1000'::float8);
591591
/// ----
592592
/// 5905.220423209181
593+
///
594+
/// statement error
595+
/// SELECT gamma('1e308'::float8);
593596
/// ```
594597
#[function("lgamma(float8) -> float8")]
595598
pub fn lgamma_f64(input: F64) -> Result<F64> {

0 commit comments

Comments
 (0)