1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

Checkpointing some stuff. No way it'll build yet.

This commit is contained in:
Patrick LeBlanc
2019-01-18 10:19:14 -06:00
parent db10662629
commit d53471fc75
13 changed files with 462 additions and 1 deletions

View File

@ -0,0 +1,19 @@
# copy licensing stuff here
#ifndef SMFILEFACTORY_H_
#define SMFILEFACTORY_H_
#include "IDBDataFile.h"
#include "FileFactoryBase.h"
namespace idbdatafile
{
class SMFileFactory : public FileFactoryBase
{
public:
IDBDataFile* open(const char* fname, const char* mode, unsigned opts, unsigned colWidth);
};
}
#endif