//--------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- namespace System.Data.Common.EntitySql.AST { using System; using System.Globalization; using System.Collections; using System.Collections.Generic; using System.Diagnostics; /// /// Base class for and . /// internal abstract class GroupAggregateExpr : Node { internal GroupAggregateExpr(DistinctKind distinctKind) { DistinctKind = distinctKind; } /// /// True if it is a "distinct" aggregate. /// internal readonly DistinctKind DistinctKind; internal GroupAggregateInfo AggregateInfo; } }