Package org.teiid.query.function.aggregate

Examples of org.teiid.query.function.aggregate.StatsFunction


                    break;                   
                  case TEXTAGG:
                     functions[i] = new TextAgg(context, (TextLine)ex);
                    break;                   
                  default:
                    functions[i] = new StatsFunction(function);
                 
                  }

                    if(aggSymbol.isDistinct() && !function.equals(NonReserved.MIN) && !function.equals(NonReserved.MAX)) {
                        SortingFilter filter = new SortingFilter(functions[i], getBufferManager(), getConnectionID(), true);
View Full Code Here

TOP

Related Classes of org.teiid.query.function.aggregate.StatsFunction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.