Skip to content

Commit

Permalink
Fixed bug #7537 : Wrong name in error message when unknown namespace …
Browse files Browse the repository at this point in the history
…is passed into RDB$SET_CONTEXT()
  • Loading branch information
hvlad committed Apr 3, 2023
1 parent a17dfe2 commit f346319
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jrd/SysFunction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4848,7 +4848,7 @@ dsc* evlSetContext(thread_db* tdbb, const SysFunction*, const NestValueArray& ar
{
// "Invalid namespace name %s passed to %s"
ERR_post(Arg::Gds(isc_ctx_namespace_invalid) <<
Arg::Str(nameStr) << Arg::Str(RDB_SET_CONTEXT));
Arg::Str(nameSpaceStr) << Arg::Str(RDB_SET_CONTEXT));
}

string valueStr;
Expand Down

0 comments on commit f346319

Please sign in to comment.