| 103 | } |
| 104 | |
| 105 | bool IsHdfsPath(const char* path, bool check_default_fs) { |
| 106 | return IsSpecificPath(path, FILESYS_PREFIX_HDFS, check_default_fs); |
| 107 | } |
| 108 | |
| 109 | bool IsS3APath(const char* path, bool check_default_fs) { |
| 110 | return IsSpecificPath(path, FILESYS_PREFIX_S3, check_default_fs); |
no test coverage detected