Skip to content

Commit

Permalink
skip decimal64 java tests until arrow-java supports it
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroshade committed Jan 20, 2025
1 parent 22dffe3 commit 83aa9ad
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions java/src/test/java/ai/rapids/cudf/TableTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
import org.apache.parquet.schema.GroupType;
import org.apache.parquet.schema.MessageType;
import org.apache.parquet.schema.OriginalType;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import java.io.*;
Expand Down Expand Up @@ -9462,6 +9463,9 @@ private Table castDecimal64To128(Table t) {
}

@Test
@Disabled("arrow-java does not yet support Decimal32/Decimal64, so now that" +
"we don't automatically upcast to decimal128 on conversion to arrow, we have" +
"to wait until it supports those types, then upgrade")
void testArrowIPCWriteToFileWithNamesAndMetadata() throws IOException {
File tempFile = File.createTempFile("test-names-metadata", ".arrow");
String[] columnNames = WriteUtils.getNonNestedColumns(false);
Expand Down Expand Up @@ -9495,6 +9499,8 @@ void testArrowIPCWriteToFileWithNamesAndMetadata() throws IOException {
}

@Test
@Disabled("arrow-java does not yet support Decimal32/Decimal64, " +
"this can be re-enabled once it does and we upgrade")
void testArrowIPCWriteToBufferChunked() {
String[] nonNestedCols = WriteUtils.getNonNestedColumns(false);
List<String> columns = Lists.newArrayList(nonNestedCols);
Expand Down

0 comments on commit 83aa9ad

Please sign in to comment.