You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
MCOL-4328 MCS avoids chown() calls for files that are on S3
MCS now chowns created directories hierarchy not only files and immediate parent directories Minor changes to cpimport's help printout cpimport's -f option is now mandatory with mode 2
This commit is contained in:
@ -306,4 +306,16 @@ int PosixFileSystem::copyFile(const char* srcPath, const char* destPath) const
|
||||
return ret;
|
||||
}
|
||||
|
||||
int PosixFileSystem::chown(const char* objectName,
|
||||
const uid_t p_uid,
|
||||
const gid_t p_gid,
|
||||
int& funcErrno) const
|
||||
{
|
||||
int ret = 0;
|
||||
errno = 0;
|
||||
if ((ret = ::chown(objectName, p_uid, p_gid)))
|
||||
funcErrno = errno;
|
||||
return ret;
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user