Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion native-engine/auron-jni-bridge/src/jni_bridge.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ macro_rules! jni_map_error_with_env {
Err($crate::jni_bridge::jni::errors::Error::JavaException) => {
let ex = $env
.exception_occurred()
.expect("failed to obtain pending Java execption object");
.expect("failed to obtain pending Java exception object");
$env.exception_describe()
.expect("failed to print Java exception to stderr");
$env.exception_clear()
Expand Down
4 changes: 2 additions & 2 deletions native-engine/auron-planner/src/planner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1066,7 +1066,7 @@ impl PhysicalPlanner {
input: &Arc<dyn ExecutionPlan>,
sort: &Box<SortExecNode>,
) -> Result<Vec<PhysicalSortExpr>, PlanSerDeError> {
let pyhsical_sort_expr = sort
let physical_sort_expr = sort
.expr
.iter()
.map(|expr| {
Expand Down Expand Up @@ -1099,7 +1099,7 @@ impl PhysicalPlanner {
}
})
.collect::<Result<Vec<_>, _>>()?;
Ok(pyhsical_sort_expr)
Ok(physical_sort_expr)
}

pub fn parse_protobuf_partitioning(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ impl PbDeserializer {
nested_msg_mapping.clone(),
&skip_fields,
)
.expect("Failed to transfer output scheam to pb scheam");
.expect("Failed to transfer output schema to pb schema");

let tag_to_output_mapping =
create_tag_to_output_mapping(message_descriptor.clone(), &pb_schema);
Expand Down
Loading