feat: impl alter table in distributed mode (#572)

This commit is contained in:
Lei, HUANG
2022-11-22 15:17:25 +08:00
committed by GitHub
parent 0791c65149
commit c144a1b20e
26 changed files with 425 additions and 221 deletions

View File

@@ -69,7 +69,8 @@ pub trait Table: Send + Sync {
Ok(FilterPushDownType::Unsupported)
}
async fn alter(&self, _request: AlterTableRequest) -> Result<()> {
async fn alter(&self, request: AlterTableRequest) -> Result<()> {
let _ = request;
unimplemented!()
}
}