Skip to content

Commit e3179ce

Browse files
committed
linter fix
1 parent 059a2d3 commit e3179ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cubejs-backend-native/src/node_export.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ fn get_cubestore_result(mut cx: FunctionContext) -> JsResult<JsValue> {
526526
for (i, row) in result.rows.iter().enumerate() {
527527
let js_row = cx.execute_scoped(|mut cx| {
528528
let js_row = JsObject::new(&mut cx);
529-
for (key, value) in result.columns.iter().zip(row.into_iter()) {
529+
for (key, value) in result.columns.iter().zip(row.iter()) {
530530
let js_key = cx.string(key);
531531
let js_value = cx.string(value);
532532
js_row.set(&mut cx, js_key, js_value)?;

0 commit comments

Comments
 (0)