feat: create distributed Mito2 table (#2246)

* feat: create distributed Mito2 table

* rebase develop
This commit is contained in:
LFC
2023-08-28 20:07:52 +08:00
committed by GitHub
parent 71fc3c42d9
commit ef75e8f7c3
27 changed files with 712 additions and 247 deletions

View File

@@ -14,6 +14,7 @@
use std::cmp::Ordering;
use common_catalog::consts::default_engine;
use itertools::Itertools;
use once_cell::sync::Lazy;
use snafu::{ensure, OptionExt, ResultExt};
@@ -143,7 +144,7 @@ impl<'a> ParserContext<'a> {
let partitions = self.parse_partitions()?;
let engine = self.parse_table_engine(common_catalog::consts::MITO_ENGINE)?;
let engine = self.parse_table_engine(default_engine())?;
let options = self
.parser
.parse_options(Keyword::WITH)