ygerzhedovich commented on code in PR #4422: URL: https://github.com/apache/ignite-3/pull/4422#discussion_r1768290913
########## modules/sql-engine/src/integrationTest/java/org/apache/ignite/internal/sql/engine/ItDataTypesTest.java: ########## @@ -606,64 +604,51 @@ public void testDecimalCastsFromNumeric(RelDataType inputType, Object input, @ParameterizedTest(name = "{1} {2}") @MethodSource("decimalOverflows") public void testCalcOpOverflow(SqlTypeName type, String expr, Object param) { - if (param == EMPTY_PARAM) { - assertThrowsSqlException(RUNTIME_ERR, type.getName() + " out of range", () -> sql(expr)); - } else { - assertThrowsSqlException(RUNTIME_ERR, type.getName() + " out of range", () -> sql(expr, param)); - } + assertThrowsSqlException(RUNTIME_ERR, type.getName() + " out of range", () -> sql(expr, param)); } private static Stream<Arguments> decimalOverflows() { return Stream.of( // BIGINT - arguments(SqlTypeName.BIGINT, "SELECT 9223372036854775807 + 1", EMPTY_PARAM), Review Comment: Why did you decide to remove such cases? It looks as valid testcases -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org