From fbe41a8ee6c4d0a4115b0f58ca373f3029a260fe Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Wed, 15 Apr 2020 17:37:43 +0300 Subject: [PATCH] Fix clang-tidy --- src/Functions/array/arrayIntersect.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Functions/array/arrayIntersect.cpp b/src/Functions/array/arrayIntersect.cpp index e47a2bbc5c8..c375775ed93 100644 --- a/src/Functions/array/arrayIntersect.cpp +++ b/src/Functions/array/arrayIntersect.cpp @@ -88,7 +88,7 @@ private: ColumnsWithTypeAndName casted; }; - CastArgumentsResult castColumns(Block & block, const ColumnNumbers & arguments, + static CastArgumentsResult castColumns(Block & block, const ColumnNumbers & arguments, const DataTypePtr & return_type, const DataTypePtr & return_type_with_nulls) const; UnpackedArrays prepareArrays(const ColumnsWithTypeAndName & columns, ColumnsWithTypeAndName & initial_columns) const;