From d389ac630a1211d26e527910e5f72bfce176e6f7 Mon Sep 17 00:00:00 2001 From: jeffee Date: Wed, 1 Jul 2020 01:25:14 +0800 Subject: [PATCH] modify comments --- src/gausskernel/storage/access/dfs/dfs_query.cpp | 2 +- src/include/access/dfs/dfs_query.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gausskernel/storage/access/dfs/dfs_query.cpp b/src/gausskernel/storage/access/dfs/dfs_query.cpp index 29688b6d76..dddfe8bc29 100755 --- a/src/gausskernel/storage/access/dfs/dfs_query.cpp +++ b/src/gausskernel/storage/access/dfs/dfs_query.cpp @@ -299,7 +299,7 @@ static Oid GetOperatorByTypeId(Oid typeID, Oid accessMethodId, int16 strategyNum /* * Parse the fileNames string from the split List. * @_in_out param splitList: point to the original split List, which may contain multiple files. - * @_in param currentFileName: point to the first file or the only file like '/user/file1.orc' (new buffer). + * @_in param currentFileName: point to the first file. * @return Return the split parsed from the list. */ SplitInfo *ParseFileSplitList(List **splitList, char **currentFileName) diff --git a/src/include/access/dfs/dfs_query.h b/src/include/access/dfs/dfs_query.h index ddb5d7722e..34dd9c644c 100755 --- a/src/include/access/dfs/dfs_query.h +++ b/src/include/access/dfs/dfs_query.h @@ -1024,7 +1024,7 @@ DfsPrivateItem *MakeDfsPrivateItem(List *columnList, List *targetList, List *res /* * Parse the fileNames string from the split List. * @_in_out param splitList: point to the original split List, which may contain multiple files. - * @_in param currentFileName: point to the first file or the only file '/user/demai/file1.orc' (new buffer). + * @_in param currentFileName: point to the first file. * @return Return the split parsed from the list. */ SplitInfo *ParseFileSplitList(List **splitList, char **currentFileName); -- Gitee