8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 01:23:03 +01:00

Fixed bug CORE-6532 : Results of сoncatenation with blob has no info about collation of source columns (which are declared with such info)

This commit is contained in:
hvlad 2021-04-03 08:44:34 +03:00
parent e3d20a9707
commit 9370c98222

View File

@ -287,7 +287,7 @@ void DataTypeUtilBase::makeConcatenate(dsc* result, const dsc* value1, const dsc
result->dsc_length = length + static_cast<USHORT>(sizeof(USHORT));
}
result->dsc_flags = (value1->dsc_flags | value2->dsc_flags) & DSC_nullable;
result->setNullable(value1->isNullable() || value2->isNullable());
}