diff options
author | ivanmorozov333 <111685085+ivanmorozov333@users.noreply.github.com> | 2024-01-12 17:53:38 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-12 17:53:38 +0300 |
commit | f8c1889db7823c51892ceabe487005a9ef637e29 (patch) | |
tree | bbe0e4a0aa3a157f3ce4d0d87000a8e35ab71f28 | |
parent | cefc335228a97bb22d5a346b45c634a98d929a29 (diff) | |
download | ydb-f8c1889db7823c51892ceabe487005a9ef637e29.tar.gz |
alter table request for metadata modifications (#974)
-rw-r--r-- | ydb/services/metadata/request/common.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ydb/services/metadata/request/common.h b/ydb/services/metadata/request/common.h index cacfa187e4..466a04f8a8 100644 --- a/ydb/services/metadata/request/common.h +++ b/ydb/services/metadata/request/common.h @@ -17,6 +17,10 @@ enum EEvents { EvCreateTableInternalResponse, EvCreateTableResponse, + EvAlterTableRequest, + EvAlterTableInternalResponse, + EvAlterTableResponse, + EvDropTableRequest, EvDropTableInternalResponse, EvDropTableResponse, @@ -79,6 +83,8 @@ using TDialogCreatePath = TDialogPolicyImpl<Ydb::Scheme::MakeDirectoryRequest, Y EEvents::EvCreatePathRequest, EEvents::EvCreatePathInternalResponse, EEvents::EvCreatePathResponse>; using TDialogCreateTable = TDialogPolicyImpl<Ydb::Table::CreateTableRequest, Ydb::Table::CreateTableResponse, EEvents::EvCreateTableRequest, EEvents::EvCreateTableInternalResponse, EEvents::EvCreateTableResponse>; +using TDialogAlterTable = TDialogPolicyImpl<Ydb::Table::AlterTableRequest, Ydb::Table::AlterTableResponse, + EEvents::EvAlterTableRequest, EEvents::EvAlterTableInternalResponse, EEvents::EvAlterTableResponse>; using TDialogDropTable = TDialogPolicyImpl<Ydb::Table::DropTableRequest, Ydb::Table::DropTableResponse, EEvents::EvDropTableRequest, EEvents::EvDropTableInternalResponse, EEvents::EvDropTableResponse>; using TDialogModifyPermissions = TDialogPolicyImpl<Ydb::Scheme::ModifyPermissionsRequest, Ydb::Scheme::ModifyPermissionsResponse, |