From 4ee665b158d579f8c44f5ff90cfdd3b8d65e4877 Mon Sep 17 00:00:00 2001 From: Joanna Hulboj Date: Sat, 11 Feb 2023 11:38:31 +0000 Subject: [PATCH] FIXUP: Missing ErrorCodes --- src/Functions/array/arraySort.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Functions/array/arraySort.cpp b/src/Functions/array/arraySort.cpp index 3743e8e7f21..f2bab58144e 100644 --- a/src/Functions/array/arraySort.cpp +++ b/src/Functions/array/arraySort.cpp @@ -6,6 +6,12 @@ namespace DB { +namespace ErrorCodes +{ + extern const int ILLEGAL_TYPE_OF_ARGUMENT; + extern const int NUMBER_OF_ARGUMENTS_DOESNT_MATCH; +} + /** Sort arrays, by values of its elements, or by values of corresponding elements of calculated expression (known as "schwartzsort"). */ template