You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-10-21 11:33:43 +03:00
Reformat all code to coding standard
This commit is contained in:
@@ -20,10 +20,10 @@
|
||||
* We want free and open source software applications under certain
|
||||
* licenses to be able to use the GPL-licensed InfiniDB idbhdfs
|
||||
* libraries despite the fact that not all such FOSS licenses are
|
||||
* compatible with version 2 of the GNU General Public License.
|
||||
* Therefore there are special exceptions to the terms and conditions
|
||||
* of the GPLv2 as applied to idbhdfs libraries, which are
|
||||
* identified and described in more detail in the FOSS License
|
||||
* compatible with version 2 of the GNU General Public License.
|
||||
* Therefore there are special exceptions to the terms and conditions
|
||||
* of the GPLv2 as applied to idbhdfs libraries, which are
|
||||
* identified and described in more detail in the FOSS License
|
||||
* Exception in the file utils/idbhdfs/FOSS-EXCEPTION.txt
|
||||
*/
|
||||
|
||||
@@ -40,22 +40,22 @@ namespace idbdatafile
|
||||
class HdfsFileSystem : public IDBFileSystem, boost::noncopyable
|
||||
{
|
||||
public:
|
||||
HdfsFileSystem();
|
||||
/* virtual */ ~HdfsFileSystem();
|
||||
HdfsFileSystem();
|
||||
/* virtual */ ~HdfsFileSystem();
|
||||
|
||||
/* virtual */ int mkdir(const char *pathname);
|
||||
/* virtual */ off64_t size(const char* path) const;
|
||||
/* virtual */ int mkdir(const char* pathname);
|
||||
/* virtual */ off64_t size(const char* path) const;
|
||||
/* virtual */ off64_t compressedSize(const char* path) const;
|
||||
/* virtual */ int remove(const char *pathname);
|
||||
/* virtual */ int rename(const char *oldpath, const char *newpath);
|
||||
/* virtual */ bool exists(const char* pathname) const;
|
||||
/* virtual */ int listDirectory(const char* pathname, std::list<std::string>& contents) const;
|
||||
/* virtual */ bool isDir(const char* pathname) const;
|
||||
/* virtual */ int copyFile(const char* srcPath, const char* destPath) const;
|
||||
/* virtual */ bool filesystemIsUp() const;
|
||||
/* virtual */ int remove(const char* pathname);
|
||||
/* virtual */ int rename(const char* oldpath, const char* newpath);
|
||||
/* virtual */ bool exists(const char* pathname) const;
|
||||
/* virtual */ int listDirectory(const char* pathname, std::list<std::string>& contents) const;
|
||||
/* virtual */ bool isDir(const char* pathname) const;
|
||||
/* virtual */ int copyFile(const char* srcPath, const char* destPath) const;
|
||||
/* virtual */ bool filesystemIsUp() const;
|
||||
|
||||
private:
|
||||
hdfsFS m_fs;
|
||||
hdfsFS m_fs;
|
||||
};
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user