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:
@ -134,6 +134,19 @@ public:
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* chown() changes the owner of the object on the FS
|
||||
* Returns 0 on success. -1 on error.
|
||||
*/
|
||||
virtual int chown(const char* objectName,
|
||||
const uid_t p_uid,
|
||||
const gid_t p_pid,
|
||||
int& funcErrno) const
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
protected:
|
||||
IDBFileSystem( Types type );
|
||||
|
||||
|
Reference in New Issue
Block a user