From 5650c403cb06a105408f8f6589371fd67ca89d27 Mon Sep 17 00:00:00 2001 From: dennis zhuang Date: Tue, 14 May 2024 08:07:29 +0800 Subject: [PATCH] chore: style Co-authored-by: Jeremyhi --- src/frontend/src/instance/grpc.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/src/instance/grpc.rs b/src/frontend/src/instance/grpc.rs index 11a8fd410837..7be2c09ec1d4 100644 --- a/src/frontend/src/instance/grpc.rs +++ b/src/frontend/src/instance/grpc.rs @@ -159,10 +159,10 @@ impl GrpcQueryHandler for Instance { .drop_flow(catalog_name, flow_name, drop_if_exists, ctx.clone()) .await? } - DdlExpr::CreateView(c) => { + DdlExpr::CreateView(expr) => { let _ = self .statement_executor - .create_view_by_expr(c, ctx.clone()) + .create_view_by_expr(expr, ctx.clone()) .await?; Output::new_with_affected_rows(0)