Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
chenzl25 committed Jun 21, 2024
1 parent 925d8c8 commit b16a600
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/frontend/src/optimizer/rule/apply_topn_transpose_rule.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ impl Rule for ApplyTopNTransposeRule {
apply.clone().decompose();
assert_eq!(join_type, JoinType::Inner);
let topn: &LogicalTopN = right.as_logical_top_n()?;
let (topn_input, limit, offset, with_ties, mut order, mut group_key) = topn.clone().decompose();
let (topn_input, limit, offset, with_ties, mut order, mut group_key) =
topn.clone().decompose();

let apply_left_len = left.schema().len();

Expand Down

0 comments on commit b16a600

Please sign in to comment.