We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e45cb07 commit a1ee835Copy full SHA for a1ee835
packages/cubejs-backend-native/src/node_export.rs
@@ -511,7 +511,7 @@ fn debug_js_to_clrepr_to_js(mut cx: FunctionContext) -> JsResult<JsValue> {
511
fn parse_cubestore_ws_result_message(mut cx: FunctionContext) -> JsResult<JsValue> {
512
let msg = cx.argument::<JsBuffer>(0)?;
513
let msg_data = msg.as_slice(&cx).to_vec();
514
- match parse_cubestore_ws_result(&*msg_data) {
+ match parse_cubestore_ws_result(&msg_data) {
515
Ok(result) => {
516
let js_array = cx.execute_scoped(|mut cx| {
517
let js_array = JsArray::new(&mut cx, result.len());
0 commit comments