Skip to content

Commit

Permalink
revert order
Browse files Browse the repository at this point in the history
Signed-off-by: Runji Wang <wangrunji0408@163.com>
  • Loading branch information
wangrunji0408 committed Apr 19, 2024
1 parent 2f83815 commit 18ab59d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/executor/explain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ impl ExplainExecutor {
let rows = self.optimizer.rows(&self.plan);
let get_metadata = |id| {
vec![
("rows", rows[usize::from(id)].to_string()),
("cost", costs[usize::from(id)].to_string()),
("rows", rows[usize::from(id)].to_string()),
]
};
let explain_obj = Explain::of(&self.plan)
Expand Down

0 comments on commit 18ab59d

Please sign in to comment.