Reads the custom key-value metadata stored in a Parquet file's footer.
This includes the full VCF header if the file was created with
vcf_to_parquet_duckdb with include_metadata = TRUE.
Examples
if (FALSE) { # \dontrun{
meta <- parquet_kv_metadata("variants.parquet")
# Get the VCF header
vcf_header <- meta[meta$key == "vcf_header", "value"]
cat(vcf_header)
} # }