diff options
author | jhendersonHDF <jhenderson@hdfgroup.org> | 2023-04-30 20:13:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-30 20:13:31 (GMT) |
commit | 922ff5b8c705c650b8dc01fa1296b1e98cb4d564 (patch) | |
tree | f646383b3d6f96005fd65b12414e78f9acc440c9 /src | |
parent | a92b768a939a0f3afed2fe66d14848b28abf3fd7 (diff) | |
download | hdf5-922ff5b8c705c650b8dc01fa1296b1e98cb4d564.zip hdf5-922ff5b8c705c650b8dc01fa1296b1e98cb4d564.tar.gz hdf5-922ff5b8c705c650b8dc01fa1296b1e98cb4d564.tar.bz2 |
Add bug note to H5Dget_space_status documentation (#2788) (#2836)
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Dpublic.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/H5Dpublic.h b/src/H5Dpublic.h index 22e856d..13a6d34 100644 --- a/src/H5Dpublic.h +++ b/src/H5Dpublic.h @@ -423,6 +423,20 @@ H5_DLL hid_t H5Dget_space(hid_t dset_id); * \details H5Dget_space_status() determines whether space has been allocated * for the dataset \p dset_id. * + * \note \Bold{BUG:} Prior to the HDF5 1.14.0, 1.12.2 and 1.10.9 releases, + * H5Dget_space_status() may return incorrect space allocation status + * values for datasets with filters applied to them. + * H5Dget_space_status() calculated the space allocation status by + * comparing the sum of the sizes of all the allocated chunks in the + * dataset against the total data size of the dataset, as calculated by + * the number of elements in the dataset's dataspace multiplied by the + * dataset's datatype size. If the dataset had any compression filters + * applied to it and the dataset chunks were successfully compressed, + * the sum of the sizes of the allocated dataset chunks would generally + * always be less than the total data size of the dataset, and + * H5Dget_space_status() wouldn't ever return + * `H5D_SPACE_STATUS_ALLOCATED`. + * * \since 1.6.0 * */ |