Skip to content

Commit

Permalink
addressed PR comments.
Browse files Browse the repository at this point in the history
Signed-off-by: Mitchell Gale <[email protected]>
  • Loading branch information
MitchellGale committed Aug 5, 2023
1 parent 5338a54 commit 2cd9f69
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@
import org.opensearch.sql.planner.logical.LogicalSort;
import org.opensearch.sql.planner.optimizer.Rule;

/** Push Filter under Sort. Filter - Sort - Child --> Sort - Filter - Child */
/**
* Push Filter under Sort.<br>
* Filter - Sort - Child --> Sort - Filter - Child
*/
public class PushFilterUnderSort implements Rule<LogicalFilter> {

private final Capture<LogicalSort> capture;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,13 +135,10 @@ public void generateNonNestedFieldsMap(ExprValue inputMap) {
}

/**
*
* Simplifies the structure of row's source Map by flattening it, making the full path of an
* object the key and the Object it refers to the value.
*
* <pre>
* Simplifies the structure of row's source Map by flattening it,
* making the full path of an object the key
* and the Object it refers to the value.
*
* <p>Sample input:
* keys = ['comments.likes']
* row = comments: {
Expand Down

0 comments on commit 2cd9f69

Please sign in to comment.