From 0bc17f0e63ee0298bdc6104416864d1251433438 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Wed, 8 Aug 2018 10:45:52 -0500 Subject: HDFFV-10544 writeVL subfunction is unimplemented --- java/src/jni/h5dImp.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/java/src/jni/h5dImp.c b/java/src/jni/h5dImp.c index cea6bb4..205e9fb 100644 --- a/java/src/jni/h5dImp.c +++ b/java/src/jni/h5dImp.c @@ -1362,9 +1362,13 @@ Java_hdf_hdf5lib_H5_H5DwriteVL isVlenStr = 1; /* strings created by H5Tvlen_create(H5T_C_S1) */ } if (isStr == 0 || isComplex>0 || isVlenStr) { + h5unimplemented(env, "H5DwriteVL: VL types, which are not string type, not implemented"); + status = -1; +#ifdef notdef status = H5DwriteVL_asstr(env, (hid_t)dataset_id, (hid_t)mem_type_id, (hid_t)mem_space_id, (hid_t)file_space_id, (hid_t)xfer_plist_id, buf); +#endif } else if (isStr > 0) { status = H5DwriteVL_str(env, (hid_t)dataset_id, (hid_t)mem_type_id, -- cgit v0.12