Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
leiysky committed May 13, 2022
1 parent 3ef4ea9 commit b6fc1a1
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions query/src/sql/planner/semantic/type_check.rs
Original file line number Diff line number Diff line change
Expand Up @@ -500,10 +500,7 @@ impl<'a> TypeChecker<'a> {
.await
}

UnaryOperator::Not => {
self.resolve_function(op.to_string().as_str(), &[child], required_type)
.await
}
UnaryOperator::Not => self.resolve_function("not", &[child], required_type).await,
}
}

Expand Down

0 comments on commit b6fc1a1

Please sign in to comment.