You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
clang format apply
This commit is contained in:
@ -23,18 +23,17 @@
|
||||
|
||||
namespace idbdatafile
|
||||
{
|
||||
|
||||
class UnbufferedFileFactory : public FileFactoryBase
|
||||
{
|
||||
public:
|
||||
/* virtual */
|
||||
IDBDataFile* open(const char* fname, const char* mode, unsigned opts, unsigned colWidth);
|
||||
public:
|
||||
/* virtual */
|
||||
IDBDataFile* open(const char* fname, const char* mode, unsigned opts, unsigned colWidth);
|
||||
};
|
||||
|
||||
inline
|
||||
IDBDataFile* UnbufferedFileFactory::open(const char* fname, const char* mode, unsigned opts, unsigned /*colWidth*/)
|
||||
inline IDBDataFile* UnbufferedFileFactory::open(const char* fname, const char* mode, unsigned opts,
|
||||
unsigned /*colWidth*/)
|
||||
{
|
||||
return new UnbufferedFile(fname, mode, opts);
|
||||
return new UnbufferedFile(fname, mode, opts);
|
||||
}
|
||||
|
||||
}
|
||||
} // namespace idbdatafile
|
||||
|
Reference in New Issue
Block a user