You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
Eventually found the problem with rename(). Was calling
::unlink() instead of our unlink/remove.
This commit is contained in:
@ -20,6 +20,8 @@
|
||||
#include "SMFileFactory.h"
|
||||
#include "SMDataFile.h"
|
||||
#include "SMComm.h"
|
||||
#include "BufferedFile.h"
|
||||
#include "IDBDataFile.h"
|
||||
|
||||
using namespace std;
|
||||
|
||||
@ -28,6 +30,10 @@ namespace idbdatafile {
|
||||
|
||||
IDBDataFile* SMFileFactory::open(const char *filename, const char *mode, unsigned opts, unsigned colWidth)
|
||||
{
|
||||
// TODO, test whether this breaks anything.
|
||||
//if (opts & IDBDataFile::USE_TMPFILE)
|
||||
// return new BufferedFile(filename, mode, opts);
|
||||
|
||||
bool _read = false;
|
||||
bool _write = false;
|
||||
bool create = false;
|
||||
|
Reference in New Issue
Block a user