westonpace commented on code in PR #12625: URL: https://github.com/apache/arrow/pull/12625#discussion_r865537148
########## cpp/src/arrow/filesystem/util_internal.h: ########## @@ -49,6 +49,13 @@ Status NotAFile(const std::string& path); ARROW_EXPORT Status InvalidDeleteDirContents(const std::string& path); +// Glob patters should be absolute paths. +// For example a valid glob is: file://*.parquet +// And an invalid glob is: *.parquet Review Comment: ```suggestion /// \brief Return files matching the glob pattern /// /// Currently, glob patterns must be absolute paths. /// For example, a valid glob is: /*.parquet /// and an invalid glob is: *.parquet ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
