类 AvgWithArgumentCastFunction

  • 所有已实现的接口:
    SQLFunction

    public class AvgWithArgumentCastFunction
    extends StandardAnsiSqlAggregationFunctions.AvgFunction
    Some databases strictly return the type of the aggregation value for AVG which is problematic in the case of averaging integers because the decimals will be dropped. The usual workaround is to cast the integer argument as some form of double/decimal.
    作者:
    Steve Ebersole