diff --git a/dbms/src/Access/AccessFlags.h b/dbms/src/Access/AccessFlags.h index f35c88f9831..5af804ddc48 100644 --- a/dbms/src/Access/AccessFlags.h +++ b/dbms/src/Access/AccessFlags.h @@ -401,6 +401,7 @@ private: auto input = std::make_unique("input()", next_flag++, GLOBAL_LEVEL); auto values = std::make_unique("values()", next_flag++, GLOBAL_LEVEL); auto numbers = std::make_unique("numbers()", next_flag++, GLOBAL_LEVEL); + auto zeros = std::make_unique("zeros()", next_flag++, GLOBAL_LEVEL); auto merge = std::make_unique("merge()", next_flag++, DATABASE_LEVEL); auto remote = std::make_unique("remote()", next_flag++, GLOBAL_LEVEL); ext::push_back(remote->aliases, "remoteSecure()", "cluster()"); @@ -409,7 +410,7 @@ private: auto jdbc = std::make_unique("jdbc()", next_flag++, GLOBAL_LEVEL); auto hdfs = std::make_unique("hdfs()", next_flag++, GLOBAL_LEVEL); auto s3 = std::make_unique("s3()", next_flag++, GLOBAL_LEVEL); - auto table_functions = std::make_unique("TABLE FUNCTIONS", std::move(file), std::move(url), std::move(input), std::move(values), std::move(numbers), std::move(merge), std::move(remote), std::move(mysql), std::move(odbc), std::move(jdbc), std::move(hdfs), std::move(s3)); + auto table_functions = std::make_unique("TABLE FUNCTIONS", std::move(file), std::move(url), std::move(input), std::move(values), std::move(numbers), std::move(zeros), std::move(merge), std::move(remote), std::move(mysql), std::move(odbc), std::move(jdbc), std::move(hdfs), std::move(s3)); ext::push_back(all, std::move(table_functions)); flags_to_keyword_tree_ = std::make_unique("ALL", std::move(all));