(final QueryContext qc, final InputInfo ii)
| 15 | */ |
| 16 | public final class FnAvg extends FnSum { |
| 17 | @Override |
| 18 | public Item item(final QueryContext qc, final InputInfo ii) throws QueryException { |
| 19 | final Item item = sum(true, qc); |
| 20 | return item != null ? item : Empty.VALUE; |
| 21 | } |
| 22 | |
| 23 | @Override |
| 24 | protected Expr opt(final CompileContext cc) throws QueryException { |