[FEAT MERGE] Backup support AWS S3

Co-authored-by: donglou-zhang <zhangleisoft2012@163.com>
Co-authored-by: xuhuleon <xuhuleon@qq.com>
This commit is contained in:
LoLolobster
2023-12-13 13:43:20 +00:00
committed by ob-robot
parent 051cb24288
commit dd84275032
68 changed files with 12175 additions and 1129 deletions

View File

@ -645,6 +645,39 @@ int ObLocalDevice::fstat(const ObIOFd &fd, ObIODFileStat &statbuf)
return ret;
}
int ObLocalDevice::del_unmerged_parts(const char *pathname)
{
UNUSED(pathname);
return OB_NOT_SUPPORTED;
}
int ObLocalDevice::adaptive_exist(const char *pathname, bool &is_exist)
{
UNUSED(pathname);
UNUSED(is_exist);
return OB_NOT_SUPPORTED;
}
int ObLocalDevice::adaptive_stat(const char *pathname, ObIODFileStat &statbuf)
{
UNUSED(pathname);
UNUSED(statbuf);
return OB_NOT_SUPPORTED;
}
int ObLocalDevice::adaptive_unlink(const char *pathname)
{
UNUSED(pathname);
return OB_NOT_SUPPORTED;
}
int ObLocalDevice::adaptive_scan_dir(const char *dir_name, ObBaseDirEntryOperator &op)
{
UNUSED(dir_name);
UNUSED(op);
return OB_NOT_SUPPORTED;
}
//block interfaces
int ObLocalDevice::mark_blocks(ObIBlockIterator &block_iter)
{