Skip to content

Commit be081ad

Browse files
Merge pull request ClickHouse#79935 from rschu1ze/fix-all_new_func_must_have_version_info
Fix failure of `02415_all_new_functions_must_have_version_information`
2 parents f80f18b + a07bdc5 commit be081ad

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/Functions/coverage.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ See https://clang.llvm.org/docs/SanitizerCoverage.html for more information.
122122
)",
123123
.examples{
124124
{"functions", "SELECT DISTINCT demangle(addressToSymbol(arrayJoin(coverageCurrent())))", ""}},
125+
.introduced_in = {23, 11},
125126
.category = FunctionDocumentation::Category::Introspection
126127
});
127128

@@ -138,6 +139,7 @@ In contrast to `coverageCurrent` it cannot be reset with the `SYSTEM RESET COVER
138139
139140
See the `coverageCurrent` function for the details.
140141
)",
142+
.introduced_in = {23, 11},
141143
.category = FunctionDocumentation::Category::Introspection
142144
});
143145

@@ -154,6 +156,7 @@ You can use this function, and the `coverage` function to compare and calculate
154156
155157
See the `coverageCurrent` function for the details.
156158
)",
159+
.introduced_in = {23, 11},
157160
.category = FunctionDocumentation::Category::Introspection
158161
});
159162
}

0 commit comments

Comments
 (0)