Skip to content

Commit f056eb9

Browse files
committed
Support for reading strings
1 parent 1c21044 commit f056eb9

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/main/java/io/tiledb/java/api/NativeArray.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -872,6 +872,11 @@ private void createNativeArrayFromVoidPointer(SWIGTYPE_p_p_void pointer) throws
872872
int64_tArray = PointerUtils.int64_tArrayFromVoid(pointer);
873873
break;
874874
}
875+
case TILEDB_CHAR:
876+
{
877+
int8_tArray = PointerUtils.int8_tArrayFromVoid(pointer);
878+
break;
879+
}
875880
default:
876881
{
877882
throw new TileDBError("Unsupported TileDB NativeArray Datatype enum: " + this.nativeType);

0 commit comments

Comments
 (0)