mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-25 09:20:40 +00:00
feat: implement catalog manager (#129)
Implement catalog manager that provides a vision of all existing tables while instance start. Current implementation is based on local table engine, all catalog info is stored in an system catalog table.
This commit is contained in:
@@ -144,7 +144,7 @@ impl<'a> ParserContext<'a> {
|
||||
/// Parses the set of valid formats
|
||||
fn parse_table_engine(&mut self) -> Result<String> {
|
||||
if !self.consume_token(ENGINE) {
|
||||
return Ok(engine::DEFAULT_ENGINE.to_string());
|
||||
return Ok(engine::MITO_ENGINE.to_string());
|
||||
}
|
||||
|
||||
self.parser
|
||||
|
||||
Reference in New Issue
Block a user