Fix build: missing argument in inferJoinKeyCommonType

This commit is contained in:
vdimir 2021-06-26 17:28:53 +03:00
parent 3443b3b5c4
commit 34b9bd7d33
No known key found for this signature in database
GPG Key ID: F57B3E10A21DBB31

View File

@ -364,7 +364,7 @@ bool TableJoin::applyJoinKeyConvert(const ColumnsWithTypeAndName & left_sample_c
return need_convert;
}
bool TableJoin::inferJoinKeyCommonType(const NamesAndTypesList & left, const NamesAndTypesList & right)
bool TableJoin::inferJoinKeyCommonType(const NamesAndTypesList & left, const NamesAndTypesList & right, bool to_supertype)
{
NameToTypeMap left_types;
for (const auto & col : left)