mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-24 03:23:03 +01:00
Misc
This commit is contained in:
parent
5cf26605eb
commit
628eb5b557
@ -5787,6 +5787,7 @@ static RecordSource* gen_union(thread_db* tdbb,
|
||||
|
||||
mark_rsb_recursive(rsb);
|
||||
}
|
||||
|
||||
return rsb;
|
||||
}
|
||||
|
||||
@ -6807,6 +6808,7 @@ static void mark_rsb_recursive(RecordSource* rsb)
|
||||
while (true)
|
||||
{
|
||||
rsb->rsb_flags |= rsb_recursive;
|
||||
|
||||
switch (rsb->rsb_type)
|
||||
{
|
||||
case rsb_indexed:
|
||||
|
@ -133,7 +133,8 @@ bool putFileFromArgument(char**& av, ClumpletWriter& spb, unsigned int tag)
|
||||
|
||||
fseek(file, 0, SEEK_END);
|
||||
const long len = ftell(file);
|
||||
if (!len) {
|
||||
if (len == 0) {
|
||||
fclose(file);
|
||||
(Arg::Gds(isc_fbsvcmgr_fp_empty) << *av).raise();
|
||||
}
|
||||
|
||||
|
@ -1283,7 +1283,7 @@ void TracePluginImpl::log_event_proc_execute(TraceConnection* connection, TraceT
|
||||
"UNAUTHORIZED EXECUTE_PROCEDURE_FINISH";
|
||||
break;
|
||||
default:
|
||||
event_type = "Unknown at executing procedure";
|
||||
event_type = "Unknown event at executing procedure";
|
||||
break;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user