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

* feat: alter region request
This commit is contained in:
LFC
2023-09-04 18:58:35 +08:00
committed by GitHub
parent b585955dbb
commit 1969b5d610
14 changed files with 10367 additions and 5386 deletions
-8
View File
@@ -67,14 +67,6 @@ enum SemanticType {
TIMESTAMP = 2;
}
// TODO: deprecate this, and use the `ColumnDef` in region_server.proto instead
message ColumnDef {
string name = 1;
ColumnDataType datatype = 2;
bool is_nullable = 3;
bytes default_constraint = 4;
}
enum ColumnDataType {
BOOLEAN = 0;
INT8 = 1;