Skip to content

Commit

Permalink
bug fix: _concludeExecution in BaseForExecOpBindJoin should declare t…
Browse files Browse the repository at this point in the history
…he exception of the abstract method
  • Loading branch information
hartig committed Oct 30, 2024
1 parent 661610f commit bca767b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import se.liu.ida.hefquin.base.query.Query;
import se.liu.ida.hefquin.engine.federation.FederationMember;
import se.liu.ida.hefquin.engine.queryplan.executable.ExecOpExecutionException;
import se.liu.ida.hefquin.engine.queryplan.executable.IntermediateResultElementSink;
import se.liu.ida.hefquin.engine.queryplan.executable.impl.ExecutableOperatorStatsImpl;
import se.liu.ida.hefquin.engine.queryproc.ExecutionContext;
Expand Down Expand Up @@ -41,7 +42,7 @@ public int preferredInputBlockSize() {
@Override
protected void _concludeExecution(
final IntermediateResultElementSink sink,
final ExecutionContext execCxt )
final ExecutionContext execCxt ) throws ExecOpExecutionException
{
// nothing to be done here
}
Expand Down

0 comments on commit bca767b

Please sign in to comment.