Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/jrd/Function.epp
Original file line number Diff line number Diff line change
Expand Up @@ -470,8 +470,8 @@ Function* Function::loadMetadata(thread_db* tdbb, USHORT id, bool noscan, USHORT
{
StaticStatusVector temp_status;
ex.stuffException(temp_status);
(Arg::Gds(isc_bad_fun_BLR) << Arg::Str(name)
<< Arg::StatusVector(temp_status.begin())).raise();
(Arg::StatusVector(temp_status.begin()) <<
Arg::Gds(isc_bad_fun_BLR) << Arg::Str(name)).raise();
}
}
}
Expand Down Expand Up @@ -609,8 +609,8 @@ bool Function::reload(thread_db* tdbb)
ex.stuffException(temp_status);

const string name = this->getName().toString();
(Arg::Gds(isc_bad_fun_BLR) << Arg::Str(name)
<< Arg::StatusVector(temp_status.begin())).raise();
(Arg::StatusVector(temp_status.begin()) <<
Arg::Gds(isc_bad_fun_BLR) << Arg::Str(name)).raise();
}
}
catch (const Exception&)
Expand Down
8 changes: 4 additions & 4 deletions src/jrd/met.epp
Original file line number Diff line number Diff line change
Expand Up @@ -3732,8 +3732,8 @@ jrd_prc* MET_procedure(thread_db* tdbb, USHORT id, bool noscan, USHORT flags)
{
StaticStatusVector temp_status;
ex.stuffException(temp_status);
(Arg::Gds(isc_bad_proc_BLR) << Arg::Str(name)
<< Arg::StatusVector(temp_status.begin())).raise();
(Arg::StatusVector(temp_status.begin()) <<
Arg::Gds(isc_bad_proc_BLR) << Arg::Str(name)).raise();
}
}
}
Expand Down Expand Up @@ -3842,8 +3842,8 @@ bool jrd_prc::reload(thread_db* tdbb)
ex.stuffException(temp_status);

const string name = this->getName().toString();
(Arg::Gds(isc_bad_proc_BLR) << Arg::Str(name)
<< Arg::StatusVector(temp_status.begin())).raise();
(Arg::StatusVector(temp_status.begin()) <<
Arg::Gds(isc_bad_proc_BLR) << Arg::Str(name)).raise();
}
}
catch (const Exception&)
Expand Down
Loading