diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2008-12-01 20:38:02 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2008-12-01 20:38:02 (GMT) |
commit | 629cc339ebf51809c50a452dd473aafc619ae940 (patch) | |
tree | 3f1f5ccadb2b3ba3f6aefc05229deb2a4195bff3 /src/H5D.c | |
parent | 4c221f9e0e490df1156da7984bd270d8c1babbf0 (diff) | |
download | hdf5-629cc339ebf51809c50a452dd473aafc619ae940.zip hdf5-629cc339ebf51809c50a452dd473aafc619ae940.tar.gz hdf5-629cc339ebf51809c50a452dd473aafc619ae940.tar.bz2 |
[svn-r16144] Removed the check of H5Dset_extent for the space to be chunked, since external datasets can be extended
Tested: windows, linux
Diffstat (limited to 'src/H5D.c')
-rw-r--r-- | src/H5D.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -1078,10 +1078,7 @@ H5Dset_extent(hid_t dset_id, const hsize_t size[]) HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a dataset") if(!size) HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no size specified") - /* layout must be chunked */ - if(H5D_CHUNKED != dset->shared->layout.type) - HGOTO_ERROR(H5E_DATASET, H5E_BADSELECT, FAIL, "layout must be chunked") - + /* Private function */ if(H5D_set_extent(dset, size, H5AC_dxpl_id) < 0) HGOTO_ERROR(H5E_DATASET, H5E_CANTINIT, FAIL, "unable to set extend dataset") |