We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1568d4c commit 58239c6Copy full SHA for 58239c6
src/multifile.jl
@@ -251,6 +251,7 @@ end
251
252
"""
253
storage,chunksizes = chunking(v::MFVariable)
254
+ storage,chunksizes = chunking(v::MFCFVariable)
255
256
Return the storage type (`:contiguous` or `:chunked`) and the chunk sizes of the varable
257
`v` corresponding to the first file. If the first file in the collection
@@ -268,5 +269,8 @@ function chunking(v::MFVariable)
268
269
end
270
271
deflate(v::MFVariable) = deflate(v.ds.ds[1][name(v)])
-
272
checksum(v::MFVariable) = checksum(v.ds.ds[1][name(v)])
273
+
274
+chunking(v::MFCFVariable) = chunking(v.var)
275
+deflate(v::MFCFVariable) = deflate(v.var)
276
+checksum(v::MFCFVariable) = checksum(v.var)
0 commit comments