1 | /* | |
2 | * Copyright OpenSearch Contributors | |
3 | * SPDX-License-Identifier: Apache-2.0 | |
4 | */ | |
5 | ||
6 | ||
7 | package org.opensearch.sql.ast.tree; | |
8 | ||
9 | import lombok.EqualsAndHashCode; | |
10 | import lombok.ToString; | |
11 | import org.opensearch.sql.ast.AbstractNodeVisitor; | |
12 | import org.opensearch.sql.ast.Node; | |
13 | ||
14 | /** | |
15 | * Abstract unresolved plan. | |
16 | */ | |
17 | @EqualsAndHashCode(callSuper = false) | |
18 | @ToString | |
19 | public abstract class UnresolvedPlan extends Node { | |
20 | @Override | |
21 | public <T, C> T accept(AbstractNodeVisitor<T, C> nodeVisitor, C context) { | |
22 |
1
1. accept : replaced return value with null for org/opensearch/sql/ast/tree/UnresolvedPlan::accept → NO_COVERAGE |
return nodeVisitor.visitChildren(this, context); |
23 | } | |
24 | ||
25 | public abstract UnresolvedPlan attach(UnresolvedPlan child); | |
26 | } | |
Mutations | ||
22 |
1.1 |