( from: CollectionRefClass | QueryRefClass, )
| 502 | } |
| 503 | |
| 504 | function removeRedundantJoinFromClause( |
| 505 | from: CollectionRefClass | QueryRefClass, |
| 506 | ): CollectionRefClass | QueryRefClass { |
| 507 | return removeRedundantFromClause(from) as CollectionRefClass | QueryRefClass |
| 508 | } |
| 509 | |
| 510 | /** |
| 511 | * Determines if a subquery is redundant (adds no value). |
no test coverage detected