aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/IO/Archives/hasRegisteredArchiveFileExtension.h
blob: cab938aa0b42ba99c81fde8217eee58b340f3f45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include <base/types.h>


namespace DB
{

/// Returns true if a specified path has one of the registered file extensions for an archive.
bool hasRegisteredArchiveFileExtension(const String & path);

}