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

Fixed a bug in IDBPolicy that prevented using the system

w/o plugins.

A couple other random things.
This commit is contained in:
Patrick LeBlanc
2019-02-06 09:49:32 -06:00
parent c9a9bf9823
commit 92f609f718
3 changed files with 8 additions and 3 deletions

View File

@ -132,7 +132,7 @@ IDBDataFile::Types IDBPolicy::getType( const std::string& path, Contexts ctxt )
{
bool isLocal = isLocalFile( path );
if (isLocal)
if (isLocal || (!useHdfs() && !useCloud()))
if (ctxt == PRIMPROC)
return IDBDataFile::UNBUFFERED;
else