8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-02-02 09:20:39 +01:00

Fixed CORE-6336 - Regression in FB 4.x: error "Implementation of text subtype <NNNN> not located"

on attempt to use some collations defined in fbintl.conf.
This commit is contained in:
Adriano dos Santos Fernandes 2020-07-15 12:50:13 -03:00
parent c932ec8159
commit 32d61ffbd4

View File

@ -862,7 +862,10 @@ void INI_init_dsql(thread_db* tdbb, dsql_dbb* database)
}
if (DTYPE_IS_TEXT(gfield->gfld_dtype))
get_charset_by_text_type(field->charSetId.value, gfield->gfld_sub_type);
{
if (get_charset_by_text_type(field->charSetId.value, gfield->gfld_sub_type))
field->charSetId.specified = true;
}
if (gfield->gfld_nullable)
field->flags |= FLD_nullable;