File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
packages/cubejs-backend-native/src Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -529,7 +529,6 @@ fn parse_cubestore_ws_result_message(mut cx: FunctionContext) -> JsResult<JsValu
529529 }
530530}
531531
532-
533532pub fn register_module_exports < C : NodeConfiguration + ' static > (
534533 mut cx : ModuleContext ,
535534) -> NeonResult < ( ) > {
@@ -544,7 +543,10 @@ pub fn register_module_exports<C: NodeConfiguration + 'static>(
544543 cx. export_function ( "buildSqlAndParams" , build_sql_and_params) ?;
545544
546545 //========= sql orchestrator exports =================
547- cx. export_function ( "parseCubestoreResultMessage" , parse_cubestore_ws_result_message) ?;
546+ cx. export_function (
547+ "parseCubestoreResultMessage" ,
548+ parse_cubestore_ws_result_message,
549+ ) ?;
548550
549551 crate :: template:: template_register_module ( & mut cx) ?;
550552
You can’t perform that action at this time.
0 commit comments