8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 03:23:03 +01:00
This commit is contained in:
asfernandes 2009-02-09 01:43:49 +00:00
parent 5cf26605eb
commit 628eb5b557
6 changed files with 16 additions and 13 deletions

View File

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

View File

@ -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();
}

View File

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