Skip to content

Commit 10b585b

Browse files
committed
Fix #8622 - Regression: ISQL crashes on attempt to extract metadata when domain with reference to user-defined collation presents.
1 parent 5813ff9 commit 10b585b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/isql/isql.epp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1457,7 +1457,7 @@ bool ISQL_get_character_sets(SSHORT char_set_id, SSHORT collation,
14571457
// Default colation is not printed to allow easy global change
14581458
if (!collationIsDefault)
14591459
{
1460-
text.printf("%s COLLATE %s%s", notNullStr, IUTILS_name_to_string(collationName).c_str());
1460+
text.printf("%s COLLATE %s", notNullStr, IUTILS_name_to_string(collationName).c_str());
14611461
return true;
14621462
}
14631463
break;

0 commit comments

Comments
 (0)