(stmt *rel.SqlSelect)
| 20 | } |
| 21 | |
| 22 | func newRewriter(stmt *rel.SqlSelect) *rewrite { |
| 23 | m := &rewrite{ |
| 24 | sel: stmt, |
| 25 | result: rel.NewSqlSelect(), |
| 26 | } |
| 27 | return m |
| 28 | } |
| 29 | |
| 30 | // WalkSourceSelect An interface implemented by this connection allowing the planner |
| 31 | // to push down as much logic into mongo as possible |
no test coverage detected