File tree Expand file tree Collapse file tree 4 files changed +12
-12
lines changed
core/src/main/java/org/opensearch/sql Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ spotless {
87
87
include ' core/src/main/java/org/opensearch/sql/monitor/**/*.java' ,
88
88
' core/src/main/java/org/opensearch/sql/expression/**/*.java' ,
89
89
' core/src/main/java/org/opensearch/sql/executor/**/*.java' ,
90
- ' core/src/main/java/org/opensearch/sql/exception/**/*.java'
90
+ ' core/src/main/java/org/opensearch/sql/exception/**/*.java' ,
91
91
' core/src/main/java/org/opensearch/sql/analysis/**/*.java' ,
92
92
' core/src/test/java/org/opensearch/sql/data/**/*.java' ,
93
93
' core/src/test/java/org/opensearch/sql/datasource/**/*.java' ,
Original file line number Diff line number Diff line change 52
52
* Currently, V2 engine does not support queries with:<br>
53
53
*
54
54
* <ul>
55
- * <li>aggregation (GROUP BY clause or aggregation functions like min/max)
56
- * <li>in memory aggregation (window function)
57
- * <li>LIMIT/OFFSET clause(s)
58
- * <li>without FROM clause
59
- * <li>JOIN
60
- * <li>a subquery
55
+ * <li>aggregation (GROUP BY clause or aggregation functions like min/max)</li>
56
+ * <li>in memory aggregation (window function)</li>
57
+ * <li>LIMIT/OFFSET clause(s)</li>
58
+ * <li>without FROM clause</li>
59
+ * <li>JOIN</li>
60
+ * <li>a subquery</li>
61
61
* </ul>
62
62
*
63
63
* V2 also requires that the table being queried should be an OpenSearch index.<br>
Original file line number Diff line number Diff line change @@ -1716,10 +1716,10 @@ private ExprValue exprLastDayToday(Clock clock) {
1716
1716
* Furthermore:<br>
1717
1717
*
1718
1718
* <ul>
1719
- * <li>zero year interpreted as 2000
1720
- * <li>negative year is not accepted
1721
- * <li>@dayOfYear should be greater than 1
1722
- * <li>if @dayOfYear is greater than 365/366, calculation goes to the next year(s)
1719
+ * <li>zero year interpreted as 2000</li>
1720
+ * <li>negative year is not accepted</li>
1721
+ * <li>@dayOfYear should be greater than 1</li>
1722
+ * <li>if @dayOfYear is greater than 365/366, calculation goes to the next year(s)</li>
1723
1723
* </ul>
1724
1724
*
1725
1725
* @param yearExpr year
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ private static DefaultFunctionResolver baseMathFunction(
114
114
/**
115
115
* <b>Definition of abs() function.<\b><br>
116
116
* The supported signature of abs() function are<br>
117
- * INT -> INT LONG -> LONG FLOAT -> FLOAT DOUBLE -> DOUBLE
117
+ * INT/ LONG/ FLOAT/ DOUBLE -> INT/LONG/FLOAT/ DOUBLE
118
118
*/
119
119
private static DefaultFunctionResolver abs () {
120
120
return define (
You can’t perform that action at this time.
0 commit comments