feat: add ChangeColumnType expr (#149)

* feat: add `ModifyColumn`

* style: rename `ModifyColumn` -> `ChangeColumnType`

* style: rename `modify_columns` -> `change_column_types`

* style: remove `ChangeColumnTypes` on `server.proto`

* resolve conflicts
This commit is contained in:
Kould
2024-04-26 14:07:25 +08:00
committed by GitHub
parent 783682fabc
commit 20b85ef113
9 changed files with 4090 additions and 334 deletions
+1
View File
@@ -127,6 +127,7 @@ message AlterRequest {
oneof kind {
AddColumns add_columns = 2;
DropColumns drop_columns = 3;
ChangeColumnTypes change_column_types = 5;
}
// The version of the schema before applying the alteration.
uint64 schema_version = 4;