ISSUES-4006 try fix build failure & test failure

This commit is contained in:
zhang2014 2020-08-08 00:14:10 +08:00
parent 6fca8ad7df
commit 6da8633741
2 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,9 @@
#if !defined(ARCADIA_BUILD)
# include "config_core.h"
#endif
#if USE_MYSQL
#include <Storages/StorageMaterializeMySQL.h>
#include <Parsers/ASTFunction.h>
@ -114,3 +120,5 @@ NamesAndTypesList StorageMaterializeMySQL::getVirtuals() const
}
}
#endif

View File

@ -1,5 +1,9 @@
#pragma once
#include "config_core.h"
#if USE_MYSQL
#include <Storages/IStorage.h>
#include <Databases/MySQL/DatabaseMaterializeMySQL.h>
@ -30,3 +34,5 @@ private:
};
}
#endif