Skip to content

Commit

Permalink
linter fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KSDaemon committed Dec 3, 2024
1 parent 059a2d3 commit e3179ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cubejs-backend-native/src/node_export.rs
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ fn get_cubestore_result(mut cx: FunctionContext) -> JsResult<JsValue> {
for (i, row) in result.rows.iter().enumerate() {
let js_row = cx.execute_scoped(|mut cx| {
let js_row = JsObject::new(&mut cx);
for (key, value) in result.columns.iter().zip(row.into_iter()) {
for (key, value) in result.columns.iter().zip(row.iter()) {
let js_key = cx.string(key);
let js_value = cx.string(value);
js_row.set(&mut cx, js_key, js_value)?;
Expand Down

0 comments on commit e3179ce

Please sign in to comment.