now creating secret hdf5 name on var rename, if needed

This commit is contained in:
Ed Hartnett 2019-01-27 11:17:57 -07:00
parent 660bda1be3
commit 784dc0e0ad

View File

@ -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. */