summaryrefslogtreecommitdiffstats
path: root/java
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2018-08-08 15:45:52 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2018-08-08 15:45:52 (GMT)
commit0bc17f0e63ee0298bdc6104416864d1251433438 (patch)
treec3fb08d0eed519c7d72fe4b815adbc9577923920 /java
parentf827e1d045b29cba83b3d9de18bdfe530fa6b05c (diff)
downloadhdf5-0bc17f0e63ee0298bdc6104416864d1251433438.zip
hdf5-0bc17f0e63ee0298bdc6104416864d1251433438.tar.gz
hdf5-0bc17f0e63ee0298bdc6104416864d1251433438.tar.bz2
HDFFV-10544 writeVL subfunction is unimplemented
Diffstat (limited to 'java')
-rw-r--r--java/src/jni/h5dImp.c4
1 files changed, 4 insertions, 0 deletions
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,