This is an automated email from the ASF dual-hosted git repository. tallison pushed a commit to branch branch_1x in repository https://gitbox.apache.org/repos/asf/tika.git
commit c4702b87aab6ec3a0ce056ffa888f56cebbf3ac1 Author: tallison <[email protected]> AuthorDate: Fri Jun 12 16:28:46 2020 -0400 TIKA-3115 -- add detection for parquet files --- .../src/main/resources/org/apache/tika/mime/tika-mimetypes.xml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml b/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml index d7d2a25..a7fe00e 100644 --- a/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml +++ b/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml @@ -4010,7 +4010,12 @@ <match value="0x43444601" type="string" offset="0"/> </magic> </mime-type> - + <mime-type type="application/x-parquet"> + <glob pattern="*.parquet"/> + <magic priority="50"> + <match value="PAR1" type="string" offset="0" /> + </magic> + </mime-type> <mime-type type="application/x-pkcs12"> <glob pattern="*.p12"/> <glob pattern="*.pfx"/>
