8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 20:43:02 +01:00

Fixed bug #7537 : Wrong name in error message when unknown namespace is passed into RDB$SET_CONTEXT()

This commit is contained in:
Vlad Khorsun 2023-04-03 12:53:15 +03:00
parent a17dfe2ca1
commit f346319ea5

View File

@ -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;