mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-24 04:03: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:
parent
e3d20a9707
commit
9370c98222
@ -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());
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user