clickhouse: fixed arrays to the left of IN [#CONV-6823].

This commit is contained in:
Michael Kolupaev 2013-03-25 13:37:58 +00:00
parent cc8914361f
commit e80af0a15d

View File

@ -556,6 +556,10 @@ void Set::executeConstArray(const ColumnConstArray * key_column, ColumnUInt8::Co
else
throw Exception("Unknown set variant.", ErrorCodes::UNKNOWN_SET_DATA_VARIANT);
}
/// Для всех строчек
for (size_t i = 0; i < rows; ++i)
vec_res[i] = res;
}
}