From 7acc42c1db1be5e7e1b32eafbf47e807438fba8b Mon Sep 17 00:00:00 2001 From: Richard Chien Date: Mon, 3 Jun 2024 17:03:49 +0800 Subject: [PATCH] fix check Signed-off-by: Richard Chien --- src/expr/core/src/window_function/session.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/expr/core/src/window_function/session.rs b/src/expr/core/src/window_function/session.rs index f9aa88d828288..11c60adc63cd3 100644 --- a/src/expr/core/src/window_function/session.rs +++ b/src/expr/core/src/window_function/session.rs @@ -36,7 +36,8 @@ use crate::expr::{ use crate::Result; /// To implement Session Window in a similar way to Range Frame, we define a similar frame bounds -/// structure here. It's very like [`RangeFrameBounds`], but with a gap instead of start & end offset. +/// structure here. It's very like [`RangeFrameBounds`](super::RangeFrameBounds), but with a gap +/// instead of start & end offset. #[derive(Debug, Clone, Eq, PartialEq, Hash)] pub struct SessionFrameBounds { pub order_data_type: DataType,