feat: distributed alter table in region server (#2311)

* feat: distributed alter table in region server

* rebase
This commit is contained in:
LFC
2023-09-05 14:07:50 +08:00
committed by Ruihang Xia
parent 922e342b63
commit 711e27d9fa
33 changed files with 902 additions and 381 deletions

View File

@@ -58,7 +58,7 @@ pub enum Error {
source: BoxedError,
},
#[snafu(display("Column {} already exists in table {}", column_name, table_name))]
#[snafu(display("Column {column_name} already exists in table {table_name}, at {location}"))]
ColumnExists {
column_name: String,
table_name: String,