You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-05 15:41:14 +03:00
17 lines
243 B
C++
17 lines
243 B
C++
#ifndef QFE_PARSEQUERY_H__
|
|
#define QFE_PARSEQUERY_H__
|
|
|
|
#include <unistd.h>
|
|
#include <string>
|
|
|
|
#include "calpontselectexecutionplan.h"
|
|
|
|
namespace qfe
|
|
{
|
|
|
|
execplan::CalpontSelectExecutionPlan* parseQuery(const std::string&, uint32_t);
|
|
|
|
}
|
|
|
|
#endif
|