Skip to content

Commit 4f4d163

Browse files
committed
up
1 parent c7f6398 commit 4f4d163

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

native-engine/datafusion-ext-plans/src/limit_exec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ mod test {
272272
}
273273

274274
#[tokio::test]
275-
async fn test_limit_with_skip() -> Result<()> {
275+
async fn test_limit_with_offset() -> Result<()> {
276276
let input = build_table(
277277
("a", &vec![0, 1, 2, 3, 4, 5, 6, 7, 8, 9]),
278278
("b", &vec![9, 8, 7, 6, 5, 4, 3, 2, 1, 0]),

native-engine/datafusion-ext-plans/src/sort_exec.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ pub fn create_default_ascending_sort_exec(
133133
})
134134
.collect(),
135135
None,
136-
0
136+
0,
137137
);
138138
if let Some(execution_plan_metrics) = execution_plan_metrics {
139139
sort_exec.metrics = execution_plan_metrics;
@@ -190,7 +190,7 @@ impl ExecutionPlan for SortExec {
190190
children[0].clone(),
191191
self.exprs.clone(),
192192
self.limit,
193-
self.offset
193+
self.offset,
194194
)))
195195
}
196196

0 commit comments

Comments
 (0)