1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

Eventually found the problem with rename(). Was calling

::unlink() instead of our unlink/remove.
This commit is contained in:
Patrick LeBlanc
2019-04-10 15:01:29 -05:00
parent c0f93d904a
commit dfc29fa833
4 changed files with 9 additions and 3 deletions

View File

@ -110,7 +110,6 @@ vector<IDBDataFile::Types> IDBFactory::listPlugins()
IDBDataFile* IDBFactory::open(IDBDataFile::Types type, const char* fname, const char* mode, unsigned opts, unsigned colWidth)
{
/* If this is a tmp file, ie opts & USE_TMPFILE, might want to force that to be a local file */
if ( s_plugins.find(type) == s_plugins.end() )
{
ostringstream oss;