Remove unrelated changes

This commit is contained in:
Igor Nikonov 2022-09-13 12:23:01 +00:00
parent c129b31d7b
commit f99f57aed8
3 changed files with 6 additions and 7 deletions

View File

@ -623,7 +623,6 @@ NamesAndTypesList Block::getNamesAndTypesList() const
NamesAndTypes Block::getNamesAndTypes() const
{
NamesAndTypes res;
res.reserve(columns());
for (const auto & elem : data)
res.emplace_back(elem.name, elem.type);

View File

@ -418,7 +418,7 @@ void optimizeDuplicateDistinct(ASTSelectQuery & select)
return;
std::unordered_set<String> distinct_names = getDistinctNames(*subselect);
std::unordered_set<std::string_view> selected_names;
std::unordered_set<String> selected_names;
/// Check source column names from select list (ignore aliases and table names)
for (const auto & id : select.select()->children)
@ -427,11 +427,11 @@ void optimizeDuplicateDistinct(ASTSelectQuery & select)
if (!identifier)
return;
const String & name = identifier->shortName();
String name = identifier->shortName();
if (!distinct_names.contains(name))
return; /// Not a distinct column, keep DISTINCT for it.
selected_names.emplace(name);
selected_names.insert(name);
}
/// select columns list != distinct columns list

View File

@ -117,10 +117,10 @@ struct InputOrderInfo
* sort_description_for_merging will be equal to (c, d) and
* used_prefix_of_sorting_key_size will be equal to 4.
*/
const size_t used_prefix_of_sorting_key_size;
size_t used_prefix_of_sorting_key_size;
const int direction;
const UInt64 limit;
int direction;
UInt64 limit;
InputOrderInfo(
const SortDescription & sort_description_for_merging_,