( from: CollectionRefClass | QueryRefClass, singleSourceClauses: Map<string, BasicExpression<boolean>>, actuallyOptimized: Set<string>, )
| 994 | } |
| 995 | |
| 996 | function optimizeJoinFromWithTracking( |
| 997 | from: CollectionRefClass | QueryRefClass, |
| 998 | singleSourceClauses: Map<string, BasicExpression<boolean>>, |
| 999 | actuallyOptimized: Set<string>, |
| 1000 | ): CollectionRefClass | QueryRefClass { |
| 1001 | return optimizeFromWithTracking( |
| 1002 | from, |
| 1003 | singleSourceClauses, |
| 1004 | actuallyOptimized, |
| 1005 | ) as CollectionRefClass | QueryRefClass |
| 1006 | } |
| 1007 | |
| 1008 | function unsafeSelect( |
| 1009 | query: QueryIR, |
no test coverage detected