You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
This reverts commit f916e64927
.
This commit is contained in:
@ -3,8 +3,7 @@
|
||||
#include <memory>
|
||||
using namespace std;
|
||||
|
||||
#include <map>
|
||||
#include <mutex>
|
||||
#include <boost/thread/mutex.hpp>
|
||||
#include <boost/scoped_ptr.hpp>
|
||||
using namespace boost;
|
||||
|
||||
@ -45,7 +44,7 @@ CalpontSelectExecutionPlan* parseQuery(const string& query, const uint32_t sid)
|
||||
// We're going to make parsing the query single-threaded for now. This makes it a lot
|
||||
// easier to interface with the parser and doesn;t materially affect overall query
|
||||
// performance (I think)
|
||||
std::unique_lock lk(ParserMutex);
|
||||
mutex::scoped_lock lk(ParserMutex);
|
||||
|
||||
boost::shared_ptr<CalpontSystemCatalog> csc = CalpontSystemCatalog::makeCalpontSystemCatalog(sid);
|
||||
CalpontSelectExecutionPlan* csep = 0;
|
||||
|
Reference in New Issue
Block a user