Skip to content

Commit 9370c98

Browse files
committed
Fixed bug CORE-6532 : Results of сoncatenation with blob has no info about collation of source columns (which are declared with such info)
1 parent e3d20a9 commit 9370c98

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/jrd/DataTypeUtil.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ void DataTypeUtilBase::makeConcatenate(dsc* result, const dsc* value1, const dsc
287287
result->dsc_length = length + static_cast<USHORT>(sizeof(USHORT));
288288
}
289289

290-
result->dsc_flags = (value1->dsc_flags | value2->dsc_flags) & DSC_nullable;
290+
result->setNullable(value1->isNullable() || value2->isNullable());
291291
}
292292

293293

0 commit comments

Comments
 (0)