Issue #2156: unescape generated column expression when loading from IS.COLUMNS

This commit is contained in:
Ansgar Becker
2025-05-05 08:07:34 +02:00
parent e39e95e23d
commit cb7e5c0d19

View File

@ -5864,6 +5864,7 @@ begin
Col.Collation := ColQuery.Col('COLLATION_NAME');
// MSSQL has no expression
Col.GenerationExpression := ColQuery.Col('GENERATION_EXPRESSION', True);
Col.GenerationExpression := UnescapeString(Col.GenerationExpression);
// PG has no extra:
ExtraText := ColQuery.Col('EXTRA', True);