Skip to content

Commit

Permalink
Change braces in documentation.
Browse files Browse the repository at this point in the history
Signed-off-by: currantw <[email protected]>
  • Loading branch information
currantw committed Feb 10, 2025
1 parent 2f8f136 commit 4e6da8d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions core/src/main/java/org/opensearch/sql/analysis/Analyzer.java
Original file line number Diff line number Diff line change
Expand Up @@ -458,37 +458,37 @@ public LogicalPlan visitEval(Eval node, AnalysisContext context) {
* <p>Input Data:
*
* <pre>
* [
* {
* struct: {
* integer: 0,
* nested_struct: { string: "value" }
* }
* ]
* }
* </pre>
*
* Query 1: <code>flatten struct</code>
*
* <pre>
* [
* {
* struct: {
* integer: 0,
* nested_struct: { string: "value" }
* },
* integer: 0,
* nested_struct: { string: "value" }
* ]
* }
* </pre>
*
* Query 2: <code>flatten struct.nested_struct</code>
*
* <pre>
* [
* {
* struct: {
* integer: 0,
* nested_struct: { string: "value" },
* string: "value"
* }
* ]
* }
* </pre>
*/
@Override
Expand Down

0 comments on commit 4e6da8d

Please sign in to comment.