Skip to content

Commit 4610340

Browse files
committed
Add comment to EsqlProject
1 parent 83978b0 commit 4610340

File tree

1 file changed

+4
-0
lines changed
  • x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/local

1 file changed

+4
-0
lines changed

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/local/EsqlProject.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@
2121
import java.io.IOException;
2222
import java.util.List;
2323

24+
/**
25+
* A projection when first parsed, i.e. obtained from {@code KEEP, DROP, RENAME}. After the analysis step, we use {@link Project}.
26+
*/
27+
// TODO: Can this be consolidated with Project? We don't need the pre-/post-analysis distinction for other logical plans.
2428
public class EsqlProject extends Project {
2529
public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry(
2630
LogicalPlan.class,

0 commit comments

Comments
 (0)