8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 18:43:02 +01:00

Fixed #8011: Decfloat error working with int128 in UDR

This commit is contained in:
AlexPeshkoff 2024-02-18 14:56:17 +03:00
parent 6c275d76ca
commit b826535e86

View File

@ -45,8 +45,6 @@ MsgMetadata* Routine::createMetadata(const Array<NestConst<Parameter> >& paramet
++i)
{
dsc d((*i)->prm_desc);
if (isExtern && d.dsc_dtype == dtype_int128)
d.dsc_dtype = dtype_dec128;
metadata->addItem((*i)->prm_name, (*i)->prm_nullable, d);
}