Skip to content

Commit

Permalink
input
Browse files Browse the repository at this point in the history
  • Loading branch information
ice1000 committed Apr 6, 2023
1 parent f619ebe commit a26463f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/frontend/src/optimizer/plan_node/generic/top_n.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,7 @@ impl<PlanRef: GenericPlanRef> TopN<PlanRef> {

pub(crate) fn fmt_with_name(&self, f: &mut fmt::Formatter<'_>, name: &str) -> fmt::Result {
let mut builder = f.debug_struct(name);
let input = self.input;
let input_schema = input.schema();
let input_schema = self.input.schema();
builder.field(
"order",
&format!(
Expand Down

0 comments on commit a26463f

Please sign in to comment.