xtern commented on code in PR #2887:
URL: https://github.com/apache/ignite-3/pull/2887#discussion_r1411956410
##########
modules/sql-engine/src/main/java/org/apache/ignite/internal/sql/engine/util/IgniteMethod.java:
##########
@@ -117,7 +117,10 @@ public enum IgniteMethod {
SUBSTR(SqlFunctions.class, "substring", String.class, int.class,
int.class),
/** ROUND function. See {@link IgniteSqlFunctions#sround(double)}, {@link
IgniteSqlFunctions#sround(double, int)} and variants. */
- ROUND(IgniteSqlFunctions.class, "sround", true);
+ ROUND(IgniteSqlFunctions.class, "sround", true),
+
+ /** ROUND function. See {@link IgniteSqlFunctions#struncate(double)},
{@link IgniteSqlFunctions#struncate(double, int)} and variants. */
Review Comment:
```suggestion
/** TRUNCATE function. See {@link IgniteSqlFunctions#struncate(double)},
{@link IgniteSqlFunctions#struncate(double, int)} and variants. */
```
?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]