You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For a user who is happy to use crc32c and zstd with whatever the defaults happen to be, create_array(..., compressors=('crc32c', 'zstd')) is a lot more ergonomic than create_array(..., compressors=({'name': 'crc32c'}, {'name' : 'zstd'})). So we should accept the iterable of strings.
The text was updated successfully, but these errors were encountered:
For a user who is happy to use crc32c and zstd with whatever the defaults happen to be,
create_array(..., compressors=('crc32c', 'zstd'))
is a lot more ergonomic thancreate_array(..., compressors=({'name': 'crc32c'}, {'name' : 'zstd'}))
. So we should accept the iterable of strings.The text was updated successfully, but these errors were encountered: