This is an automated email from the ASF dual-hosted git repository.

zstan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


The following commit(s) were added to refs/heads/main by this push:
     new b292813b27 IGNITE-22892 Sql. NumericCaseTypeCoercionTest duplicates 
test case fix (#4171)
b292813b27 is described below

commit b292813b276464dea0b224247890771f93b7248c
Author: Evgeniy Stanilovskiy <[email protected]>
AuthorDate: Fri Aug 2 12:06:39 2024 +0300

    IGNITE-22892 Sql. NumericCaseTypeCoercionTest duplicates test case fix 
(#4171)
---
 .../datatypes/NumericCaseTypeCoercionTest.java     | 33 ----------------------
 1 file changed, 33 deletions(-)

diff --git 
a/modules/sql-engine/src/test/java/org/apache/ignite/internal/sql/engine/planner/datatypes/NumericCaseTypeCoercionTest.java
 
b/modules/sql-engine/src/test/java/org/apache/ignite/internal/sql/engine/planner/datatypes/NumericCaseTypeCoercionTest.java
index 492c2e349f..bc0ebbb538 100644
--- 
a/modules/sql-engine/src/test/java/org/apache/ignite/internal/sql/engine/planner/datatypes/NumericCaseTypeCoercionTest.java
+++ 
b/modules/sql-engine/src/test/java/org/apache/ignite/internal/sql/engine/planner/datatypes/NumericCaseTypeCoercionTest.java
@@ -534,39 +534,6 @@ public class NumericCaseTypeCoercionTest extends 
BaseTypeCoercionTest {
                         .secondOpBeSame(),
 
 
-                forTypePair(NumericPair.DECIMAL_2_0_DECIMAL_2_0)
-                        .firstOpMatches(ofTypeWithoutCast(Types.DECIMAL_22_3))
-                        
.secondOpMatches(ofTypeWithoutCast(Types.DECIMAL_22_3)),
-
-                forTypePair(NumericPair.DECIMAL_2_0_DECIMAL_3_1)
-                        .firstOpMatches(ofTypeWithoutCast(Types.DECIMAL_22_3))
-                        
.secondOpMatches(ofTypeWithoutCast(Types.DECIMAL_22_3)),
-
-                forTypePair(NumericPair.DECIMAL_2_0_DECIMAL_5_3)
-                        .firstOpMatches(ofTypeWithoutCast(Types.DECIMAL_22_3))
-                        
.secondOpMatches(ofTypeWithoutCast(Types.DECIMAL_22_3)),
-
-                forTypePair(NumericPair.DECIMAL_2_0_DECIMAL_5_0)
-                        .firstOpMatches(ofTypeWithoutCast(Types.DECIMAL_22_3))
-                        
.secondOpMatches(ofTypeWithoutCast(Types.DECIMAL_22_3)),
-
-                forTypePair(NumericPair.DECIMAL_2_0_DECIMAL_6_1)
-                        .firstOpMatches(ofTypeWithoutCast(Types.DECIMAL_22_3))
-                        
.secondOpMatches(ofTypeWithoutCast(Types.DECIMAL_22_3)),
-
-                forTypePair(NumericPair.DECIMAL_2_0_DECIMAL_8_3)
-                        .firstOpMatches(ofTypeWithoutCast(Types.DECIMAL_22_3))
-                        
.secondOpMatches(ofTypeWithoutCast(Types.DECIMAL_22_3)),
-
-                forTypePair(NumericPair.DECIMAL_2_0_REAL)
-                        .firstOpMatches(ofTypeWithoutCast(NativeTypes.DOUBLE))
-                        
.secondOpMatches(ofTypeWithoutCast(NativeTypes.DOUBLE)),
-
-                forTypePair(NumericPair.DECIMAL_2_0_DOUBLE)
-                        .firstOpMatches(ofTypeWithoutCast(NativeTypes.DOUBLE))
-                        .secondOpBeSame(),
-
-
                 forTypePair(NumericPair.DECIMAL_3_1_DECIMAL_3_1)
                         .firstOpMatches(ofTypeWithoutCast(Types.DECIMAL_22_3))
                         
.secondOpMatches(ofTypeWithoutCast(Types.DECIMAL_22_3)),

Reply via email to