added storage to NC_VAR_INFO_T, removed unneeded test code

This commit is contained in:
Edward Hartnett 2020-03-07 05:08:12 -07:00
parent 34c3b85fc0
commit ddb44b5abb
2 changed files with 459 additions and 471 deletions

File diff suppressed because it is too large Load Diff

View File

@ -210,6 +210,7 @@ typedef struct NC_VAR_INFO
size_t *chunksizes; /**< For chunked storage, an array (size ndims) of chunksizes. */
nc_bool_t contiguous; /**< True if variable is stored contiguously in HDF5 file. */
nc_bool_t compact; /**< True if variable is in comact storage in HDF5 file. */
int storage; /**< Storage of this var, compact, contiguous, or chunked. */
int parallel_access; /**< Type of parallel access for I/O on variable (collective or independent). */
nc_bool_t dimscale; /**< True if var is a dimscale. */
nc_bool_t *dimscale_attached; /**< Array of flags that are true if dimscale is attached for that dim index. */