This commit is contained in:
Hongze Cheng 2022-01-06 08:39:48 +00:00
parent 9e3e40ad6e
commit 9869d98ac6
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ typedef struct {
#define tfsopen(pf, flags) open(TFILE_NAME(pf), flags)
#define tfsclose(fd) close(fd)
#define tfsremove(pf) remove(TFILE_NAME(pf))
#define tfscopy(sf, df) taosCopy(TFILE_NAME(sf), TFILE_NAME(df))
#define tfscopy(sf, df) taosCopyFile(TFILE_NAME(sf), TFILE_NAME(df))
#define tfsrename(sf, df) taosRename(TFILE_NAME(sf), TFILE_NAME(df))
void tfsInitFile(TFILE *pf, int level, int id, const char *bname);