From 2d7b0545fed172c7fa7cd1e60eb2da555b2d9476 Mon Sep 17 00:00:00 2001 From: Vxider Date: Fri, 24 Jan 2020 20:14:31 +0300 Subject: [PATCH] try to fix code style check --- dbms/src/Storages/WindowView/StorageWindowView.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dbms/src/Storages/WindowView/StorageWindowView.cpp b/dbms/src/Storages/WindowView/StorageWindowView.cpp index 55aa3fa8426..9bc9d7b0788 100644 --- a/dbms/src/Storages/WindowView/StorageWindowView.cpp +++ b/dbms/src/Storages/WindowView/StorageWindowView.cpp @@ -392,8 +392,8 @@ ASTPtr StorageWindowView::innerQueryParser(ASTSelectQuery & query) void StorageWindowView::writeIntoWindowView(StorageWindowView & window_view, const Block & block, const Context & context) { BlockInputStreams streams = {std::make_shared(block)}; - auto window_proxy_storage = std::make_shared(StorageID("", "WindowViewProxyStorage"), - window_view.getParentStorage(), std::move(streams), QueryProcessingStage::FetchColumns); + auto window_proxy_storage = std::make_shared( + StorageID("", "WindowViewProxyStorage"), window_view.getParentStorage(), std::move(streams), QueryProcessingStage::FetchColumns); InterpreterSelectQuery select_block( window_view.getInnerQuery(), context, window_proxy_storage, QueryProcessingStage::WithMergeableState);