Skip to content

Commit 0b49fa8

Browse files
committed
Fix #8601 - Firebird 6.0. Charset and collation are not found in the search path when altering a table.
1 parent 7be7933 commit 0b49fa8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/dsql/DdlNodes.epp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6428,8 +6428,8 @@ DdlNode* RelationNode::dsqlPass(DsqlCompilerScratch* dsqlScratch)
64286428
{
64296429
const auto alterColTypeClause = static_cast<AlterColTypeClause*>(clause.getObject());
64306430
dsqlScratch->qualifyExistingName(alterColTypeClause->field->typeOfName, obj_field);
6431-
dsqlScratch->qualifyExistingName(alterColTypeClause->field->charSet, obj_field);
6432-
dsqlScratch->qualifyExistingName(alterColTypeClause->field->collate, obj_field);
6431+
dsqlScratch->qualifyExistingName(alterColTypeClause->field->charSet, obj_charset);
6432+
dsqlScratch->qualifyExistingName(alterColTypeClause->field->collate, obj_collation);
64336433
break;
64346434
}
64356435

0 commit comments

Comments
 (0)