| 782 | } |
| 783 | |
| 784 | AggNode* AvgAggNode::dsqlCopy(DsqlCompilerScratch* dsqlScratch) /*const*/ |
| 785 | { |
| 786 | return FB_NEW_POOL(dsqlScratch->getPool()) AvgAggNode(dsqlScratch->getPool(), distinct, dialect1, |
| 787 | doDsqlPass(dsqlScratch, arg)); |
| 788 | } |
| 789 | |
| 790 | |
| 791 | //-------------------- |
nothing calls this directly
no test coverage detected