mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-03-31 17:50:26 +08:00
now creating secret hdf5 name on var rename, if needed
This commit is contained in:
parent
660bda1be3
commit
784dc0e0ad
@ -1109,8 +1109,14 @@ NC4_rename_var(int ncid, int varid, const char *name)
|
||||
if ((other_dim = (NC_DIM_INFO_T *)ncindexlookup(grp->dim, name)) &&
|
||||
strcmp(name, var->dim[0]->hdr.name))
|
||||
{
|
||||
/* Create a dim without var dataset for old dim. */
|
||||
if ((retval = nc4_create_dim_wo_var(other_dim)))
|
||||
return retval;
|
||||
|
||||
/* Give this var a secret HDF5 name so it can co-exist in file
|
||||
* with dim wp var dataset. */
|
||||
if ((retval = give_var_secret_name(var)))
|
||||
return retval;
|
||||
}
|
||||
|
||||
/* Change the HDF5 file, if this var has already been created
|
||||
@ -1160,8 +1166,6 @@ NC4_rename_var(int ncid, int varid, const char *name)
|
||||
/* Break up the coordinate variable */
|
||||
if ((retval = nc4_break_coord_var(grp, var, var->dim[0])))
|
||||
return retval;
|
||||
/* if ((retval = give_var_secret_name(var))) */
|
||||
/* return retval; */
|
||||
}
|
||||
|
||||
/* Check if this should become a coordinate variable. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user