Returns the root relational expression, creating a LogicalProject if necessary to remove fields that are not needed.
()
| 154 | /** Returns the root relational expression, creating a {@link LogicalProject} |
| 155 | * if necessary to remove fields that are not needed. */ |
| 156 | public RelNode project() { |
| 157 | return project(false); |
| 158 | } |
| 159 | |
| 160 | /** Returns the root relational expression as a {@link LogicalProject}. |
| 161 | * |