feat: add expr for altering table attributes (#192)

* feat: add expr for altering table attributes

* feat/add-modify-table-attr-expr:
 Added ChangeTableAttributes to AlterRequest in server.proto

 - Introduced ChangeTableAttributes message handling in AlterRequest.
 - Updated server.pb.cc and server.pb.h to include logic for new ChangeTableAttributes.
 - Altered Java Server class to support ChangeTableAttributes.
 - Incremented descriptor sizes and adjusted field offsets in server.pb.cc.

* chore: rename

* update: allow multiple options
This commit is contained in:
Lei, HUANG
2024-10-29 19:10:00 -07:00
committed by GitHub
parent 86ed051dfd
commit 255f87a331
9 changed files with 3859 additions and 387 deletions
+1
View File
@@ -128,6 +128,7 @@ message AlterRequest {
AddColumns add_columns = 2;
DropColumns drop_columns = 3;
ChangeColumnTypes change_column_types = 5;
ChangeTableOptions change_table_options = 6;
}
// The version of the schema before applying the alteration.
uint64 schema_version = 4;