@@ -2149,7 +2149,7 @@ static RseNode* pass1_rse_impl(DsqlCompilerScratch* dsqlScratch, RecordSourceNod
21492149 ExprNode::doDsqlFieldRemapper (remapper, parentRse->dsqlOrder , rse->dsqlOrder );
21502150 rse->dsqlOrder = NULL ;
21512151
2152- // AB: Check for invalid contructions inside the ORDER BY clause
2152+ // AB: Check for invalid constructions inside the ORDER BY clause
21532153 ValueListNode* valueList = targetRse->dsqlOrder ;
21542154 NestConst<ValueExprNode>* ptr = valueList->items .begin ();
21552155 for (const NestConst<ValueExprNode>* const end = valueList->items .end (); ptr != end; ++ptr)
@@ -2178,7 +2178,7 @@ static RseNode* pass1_rse_impl(DsqlCompilerScratch* dsqlScratch, RecordSourceNod
21782178
21792179 ExprNode::doDsqlFieldRemapper (remapper, parentRse->dsqlWhere );
21802180
2181- // AB: Check for invalid contructions inside the HAVING clause
2181+ // AB: Check for invalid constructions inside the HAVING clause
21822182
21832183 if (InvalidReferenceFinder::find (dsqlScratch, parent_context, aggregate->dsqlGroup ,
21842184 parentRse->dsqlWhere ))
@@ -2258,7 +2258,7 @@ static RseNode* pass1_rse_impl(DsqlCompilerScratch* dsqlScratch, RecordSourceNod
22582258
22592259 if (aggregate)
22602260 {
2261- // Check for invalid contructions inside selected-items list
2261+ // Check for invalid constructions inside selected-items list
22622262 ValueListNode* valueList = rse->dsqlSelectList ;
22632263 NestConst<ValueExprNode>* ptr = valueList->items .begin ();
22642264 for (const NestConst<ValueExprNode>* const end = valueList->items .end (); ptr != end; ++ptr)
@@ -2282,7 +2282,7 @@ static RseNode* pass1_rse_impl(DsqlCompilerScratch* dsqlScratch, RecordSourceNod
22822282 {
22832283 if (aggregate)
22842284 {
2285- // Check for invalid contructions inside the order-by list
2285+ // Check for invalid constructions inside the order-by list
22862286 ValueListNode* valueList = rse->dsqlOrder ;
22872287 NestConst<ValueExprNode>* ptr = valueList->items .begin ();
22882288 for (const NestConst<ValueExprNode>* const end = valueList->items .end (); ptr != end; ++ptr)
0 commit comments