Reports the codec a writer opened with no compression= would use -- the value set here, or
"zstd" if it was never set.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| character(len=:), | intent(out), | allocatable | :: | name |
effective default codec. |
subroutine parquet_get_default_compression(name) character(len=:), allocatable, intent(out) :: name !! effective default codec. if (len_trim(cfg_default_compression) == 0) then name = "zstd" else name = trim(cfg_default_compression) end if end subroutine parquet_get_default_compression