Skip to content

Commit 3f4ee1c

Browse files
committed
Fixed bug
1 parent df4d5b3 commit 3f4ee1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dsql/StmtNodes.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1061,7 +1061,7 @@ void BulkInsertNode::assignValues(thread_db* tdbb, Request* request, jrd_rel* re
10611061
auto& rel_name = relation->getName();
10621062

10631063
if (!rel_name.isEmpty())
1064-
name.printf("%s.\"%s\"", rel_name.toQuotedString(), relField->fld_name.c_str());
1064+
name.printf("%s.\"%s\"", rel_name.toQuotedString().c_str(), relField->fld_name.c_str());
10651065
else
10661066
name = relField->fld_name.toQuotedString();
10671067

0 commit comments

Comments
 (0)