This repository has been archived by the owner on Aug 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b918bad
commit 3fa954c
Showing
214 changed files
with
8,167 additions
and
2,727 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
61 changes: 61 additions & 0 deletions
61
...main/java/com/amazon/opendistroforelasticsearch/sql/analysis/NamedExpressionAnalyzer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/* | ||
* | ||
* Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"). | ||
* You may not use this file except in compliance with the License. | ||
* A copy of the License is located at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* or in the "license" file accompanying this file. This file is distributed | ||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either | ||
* express or implied. See the License for the specific language governing | ||
* permissions and limitations under the License. | ||
* | ||
*/ | ||
|
||
package com.amazon.opendistroforelasticsearch.sql.analysis; | ||
|
||
import com.amazon.opendistroforelasticsearch.sql.ast.AbstractNodeVisitor; | ||
import com.amazon.opendistroforelasticsearch.sql.ast.expression.Alias; | ||
import com.amazon.opendistroforelasticsearch.sql.ast.expression.QualifiedName; | ||
import com.amazon.opendistroforelasticsearch.sql.ast.expression.UnresolvedExpression; | ||
import com.amazon.opendistroforelasticsearch.sql.expression.DSL; | ||
import com.amazon.opendistroforelasticsearch.sql.expression.NamedExpression; | ||
import lombok.RequiredArgsConstructor; | ||
|
||
/** | ||
* Analyze the Alias node in the {@link AnalysisContext} to construct the list of | ||
* {@link NamedExpression}. | ||
*/ | ||
@RequiredArgsConstructor | ||
public class NamedExpressionAnalyzer extends | ||
AbstractNodeVisitor<NamedExpression, AnalysisContext> { | ||
private final ExpressionAnalyzer expressionAnalyzer; | ||
|
||
/** | ||
* Analyze Select fields. | ||
*/ | ||
public NamedExpression analyze(UnresolvedExpression expression, | ||
AnalysisContext analysisContext) { | ||
return expression.accept(this, analysisContext); | ||
} | ||
|
||
@Override | ||
public NamedExpression visitAlias(Alias node, AnalysisContext context) { | ||
return DSL.named( | ||
unqualifiedNameIfFieldOnly(node, context), | ||
node.getDelegated().accept(expressionAnalyzer, context), | ||
node.getAlias()); | ||
} | ||
|
||
private String unqualifiedNameIfFieldOnly(Alias node, AnalysisContext context) { | ||
UnresolvedExpression selectItem = node.getDelegated(); | ||
if (selectItem instanceof QualifiedName) { | ||
QualifierAnalyzer qualifierAnalyzer = new QualifierAnalyzer(context); | ||
return qualifierAnalyzer.unqualified((QualifiedName) selectItem); | ||
} | ||
return node.getName(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.