From ae2e250bc2d1033a9cf92d780860053f3b2b0215 Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Sat, 9 Dec 2017 20:40:31 +0300 Subject: [PATCH] Modified comment [#CLICKHOUSE-2]. --- dbms/src/Columns/ColumnArray.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbms/src/Columns/ColumnArray.cpp b/dbms/src/Columns/ColumnArray.cpp index 3940635b6ac..5635b8efc26 100644 --- a/dbms/src/Columns/ColumnArray.cpp +++ b/dbms/src/Columns/ColumnArray.cpp @@ -45,7 +45,7 @@ ColumnArray::ColumnArray(ColumnPtr nested_column, ColumnPtr offsets_column) } /** NOTE - * Arrays with constant value are possible and used in implementation of higher order functions and in ARRAY JOIN. + * Arrays with constant value are possible and used in implementation of higher order functions (see FunctionReplicate). * But in most cases, arrays with constant value are unexpected and code will work wrong. Use with caution. */ }