Check if binary operation contains aggregates
Source position: fpexprpars.pp line 144
public function TFPBinaryOperation.HasAggregate: Boolean; override; |
Returns true if operation has aggregates
The HasAggregate method checks whether either the left or right operand contains aggregate expressions. It returns True if any of the operands has aggregate functionality, which indicates that special aggregate processing is required for this operation.
The method is used by the expression parser to identify operations that need aggregate handling and to ensure proper processing order for aggregate expressions.