diff options
author | jhendersonHDF <jhenderson@hdfgroup.org> | 2023-08-02 20:19:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-02 20:19:21 (GMT) |
commit | f5c3963c18ef148622d620691dc9d202aa0b95ed (patch) | |
tree | 08b6d2e1ede033a7e00ad5fafe0522dd185ffb76 /release_docs/RELEASE.txt | |
parent | 8e9c281cf1858c0835e2b81f6e580132d118dafb (diff) | |
download | hdf5-f5c3963c18ef148622d620691dc9d202aa0b95ed.zip hdf5-f5c3963c18ef148622d620691dc9d202aa0b95ed.tar.gz hdf5-f5c3963c18ef148622d620691dc9d202aa0b95ed.tar.bz2 |
Fix h5repack for variable-length datatyped datasets (#3331)
Diffstat (limited to 'release_docs/RELEASE.txt')
-rw-r--r-- | release_docs/RELEASE.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index c382af0..ab9f569 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -599,6 +599,22 @@ Bug Fixes since HDF5-1.14.0 release Tools ----- + - Fixed an issue in h5repack for variable-length typed datasets + + When repacking datasets into a new file, h5repack tries to determines whether + it can use H5Ocopy to copy each dataset into the new file, or if it needs to + manually re-create the dataset, then read data from the old dataset and write + it to the new dataset. H5repack was previously using H5Ocopy for datasets with + variable-length datatypes, but this can be problematic if the global heap + addresses involved do not match exactly between the old and new files. These + addresses could change for a variety of reasons, such as the command-line options + provided to h5repack, how h5repack allocate space in the repacked file, etc. + Since H5Ocopy does not currently perform any translation when these addresses + change, datasets that were repacked with H5Ocopy could become unreadable in the + new file. H5repack has been fixed to repack variable-length typed datasets without + using H5Ocopy to ensure that the new datasets always have the correct global heap + addresses. + - Names of objects with square brackets will have trouble without the special argument, --no-compact-subset, on the h5dump command line. |