hybridse::vm::Engine
Summary
class hybridse::vm::Engine;// Assuming the catalog has been created and initialized before
base::Status status;
EngineOptions options;
Engine engine(catalog, options);
BatchRunSession session;
std::db = "test_db";
std::string sql = "select col0, col1, col2, col1+col2 as col12 from t1;";
engine.Get(sql, db, session, status);
engine.Explain(sql, db, EngineMode::kBatchMode, &output, &status);Public functions
Public Functions
function Engine
function Engine
function ~Engine
function Get
function GetDependentTables
function Explain
function Explain
function UpdateCatalog
function ClearCacheLocked
function InitializeGlobalLLVM
Last updated