Skip to content

Commit 9cfbc08

Browse files
committed
GH-55 Renable tests after fixing link error.
1 parent a5b8604 commit 9cfbc08

File tree

4 files changed

+0
-19
lines changed

4 files changed

+0
-19
lines changed

gandiva/src/test/java/org/apache/arrow/gandiva/evaluator/FilterProjectTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
public class FilterProjectTest extends BaseEvaluatorTest {
4141

4242
@Test
43-
@Disabled("GH-43576 - Fix and enable this test")
4443
public void testSimpleSV16() throws GandivaException, Exception {
4544
Field a = Field.nullable("a", int32);
4645
Field b = Field.nullable("b", int32);

gandiva/src/test/java/org/apache/arrow/gandiva/evaluator/FilterTest.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ List<ArrowBuf> stringBufs(String[] strings) {
7373
}
7474

7575
@Test
76-
@Disabled("GH-43576 - Fix and enable this test")
7776
public void testSimpleInString() throws GandivaException, Exception {
7877
Field c1 = Field.nullable("c1", new ArrowType.Utf8());
7978
TreeNode l1 = TreeBuilder.makeLiteral(1L);
@@ -137,7 +136,6 @@ public void testSimpleInString() throws GandivaException, Exception {
137136
}
138137

139138
@Test
140-
@Disabled("GH-43576 - Fix and enable this test")
141139
public void testSimpleInInt() throws GandivaException, Exception {
142140
Field c1 = Field.nullable("c1", int32);
143141

@@ -181,7 +179,6 @@ public void testSimpleInInt() throws GandivaException, Exception {
181179
}
182180

183181
@Test
184-
@Disabled("GH-43576 - Fix and enable this test")
185182
public void testSimpleSV16() throws GandivaException, Exception {
186183
Field a = Field.nullable("a", int32);
187184
Field b = Field.nullable("b", int32);
@@ -203,7 +200,6 @@ public void testSimpleSV16() throws GandivaException, Exception {
203200
}
204201

205202
@Test
206-
@Disabled("GH-43576 - Fix and enable this test")
207203
public void testSimpleSV16_AllMatched() throws GandivaException, Exception {
208204
Field a = Field.nullable("a", int32);
209205
Field b = Field.nullable("b", int32);
@@ -233,7 +229,6 @@ public void testSimpleSV16_AllMatched() throws GandivaException, Exception {
233229
}
234230

235231
@Test
236-
@Disabled("GH-43576 - Fix and enable this test")
237232
public void testSimpleSV16_GreaterThan64Recs() throws GandivaException, Exception {
238233
Field a = Field.nullable("a", int32);
239234
Field b = Field.nullable("b", int32);
@@ -265,7 +260,6 @@ public void testSimpleSV16_GreaterThan64Recs() throws GandivaException, Exceptio
265260
}
266261

267262
@Test
268-
@Disabled("GH-43576 - Fix and enable this test")
269263
public void testSimpleSV32() throws GandivaException, Exception {
270264
Field a = Field.nullable("a", int32);
271265
Field b = Field.nullable("b", int32);
@@ -287,7 +281,6 @@ public void testSimpleSV32() throws GandivaException, Exception {
287281
}
288282

289283
@Test
290-
@Disabled("GH-43576 - Fix and enable this test")
291284
public void testSimpleFilterWithNoOptimisation() throws GandivaException, Exception {
292285
Field a = Field.nullable("a", int32);
293286
Field b = Field.nullable("b", int32);

gandiva/src/test/java/org/apache/arrow/gandiva/evaluator/ProjectorDecimalTest.java

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
public class ProjectorDecimalTest extends org.apache.arrow.gandiva.evaluator.BaseEvaluatorTest {
4949

5050
@Test
51-
@Disabled("GH-43576 - Fix and enable this test")
5251
public void test_add() throws GandivaException {
5352
int precision = 38;
5453
int scale = 8;
@@ -116,7 +115,6 @@ public void test_add() throws GandivaException {
116115
}
117116

118117
@Test
119-
@Disabled("GH-43576 - Fix and enable this test")
120118
public void test_add_literal() throws GandivaException {
121119
int precision = 2;
122120
int scale = 0;
@@ -178,7 +176,6 @@ public void test_add_literal() throws GandivaException {
178176
}
179177

180178
@Test
181-
@Disabled("GH-43576 - Fix and enable this test")
182179
public void test_multiply() throws GandivaException {
183180
int precision = 38;
184181
int scale = 8;
@@ -248,7 +245,6 @@ public void test_multiply() throws GandivaException {
248245
}
249246

250247
@Test
251-
@Disabled("GH-43576 - Fix and enable this test")
252248
public void testCompare() throws GandivaException {
253249
Decimal aType = new Decimal(38, 3, 128);
254250
Decimal bType = new Decimal(38, 2, 128);
@@ -343,7 +339,6 @@ public void testCompare() throws GandivaException {
343339
}
344340

345341
@Test
346-
@Disabled("GH-43576 - Fix and enable this test")
347342
public void testRound() throws GandivaException {
348343
Decimal aType = new Decimal(38, 2, 128);
349344
Decimal aWithScaleZero = new Decimal(38, 0, 128);
@@ -486,7 +481,6 @@ public void testRound() throws GandivaException {
486481
}
487482

488483
@Test
489-
@Disabled("GH-43576 - Fix and enable this test")
490484
public void testCastToDecimal() throws GandivaException {
491485
Decimal decimalType = new Decimal(38, 2, 128);
492486
Decimal decimalWithScaleOne = new Decimal(38, 1, 128);
@@ -613,7 +607,6 @@ public void testCastToDecimal() throws GandivaException {
613607
}
614608

615609
@Test
616-
@Disabled("GH-43576 - Fix and enable this test")
617610
public void testCastToLong() throws GandivaException {
618611
Decimal decimalType = new Decimal(38, 2, 128);
619612
Field dec = Field.nullable("dec", decimalType);
@@ -666,7 +659,6 @@ public void testCastToLong() throws GandivaException {
666659
}
667660

668661
@Test
669-
@Disabled("GH-43576 - Fix and enable this test")
670662
public void testCastToDouble() throws GandivaException {
671663
Decimal decimalType = new Decimal(38, 2, 128);
672664
Field dec = Field.nullable("dec", decimalType);
@@ -721,7 +713,6 @@ public void testCastToDouble() throws GandivaException {
721713
}
722714

723715
@Test
724-
@Disabled("GH-43576 - Fix and enable this test")
725716
public void testCastToString() throws GandivaException {
726717
Decimal decimalType = new Decimal(38, 2, 128);
727718
Field dec = Field.nullable("dec", decimalType);
@@ -783,7 +774,6 @@ public void testCastToString() throws GandivaException {
783774
}
784775

785776
@Test
786-
@Disabled("GH-43576 - Fix and enable this test")
787777
public void testCastStringToDecimal() throws GandivaException {
788778
Decimal decimalType = new Decimal(4, 2, 128);
789779
Field dec = Field.nullable("dec", decimalType);

gandiva/src/test/java/org/apache/arrow/gandiva/evaluator/ProjectorTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@
6262
import org.junit.jupiter.api.Disabled;
6363
import org.junit.jupiter.api.Test;
6464

65-
@Disabled("Disabled until GH-43981 is solved")
6665
public class ProjectorTest extends BaseEvaluatorTest {
6766

6867
private Charset utf8Charset = Charset.forName("UTF-8");

0 commit comments

Comments
 (0)