diff options
author | brgayazov <bulat@ydb.tech> | 2023-05-11 15:47:53 +0300 |
---|---|---|
committer | brgayazov <bulat@ydb.tech> | 2023-05-11 15:47:53 +0300 |
commit | 7a6a4d68061a14152b059343125597cba7b32ecb (patch) | |
tree | e3a6d82b0e8c502bc5ff189226a3b0a831ccf3dc | |
parent | 744971c61564b2b1f1ca2ad3f450bf7f586f7bf5 (diff) | |
download | ydb-7a6a4d68061a14152b059343125597cba7b32ecb.tar.gz |
Fixed recursive remove of column table entry
-rw-r--r-- | ydb/public/lib/ydb_cli/common/recursive_remove.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ydb/public/lib/ydb_cli/common/recursive_remove.cpp b/ydb/public/lib/ydb_cli/common/recursive_remove.cpp index 657dad09ef5..70ffebbec6a 100644 --- a/ydb/public/lib/ydb_cli/common/recursive_remove.cpp +++ b/ydb/public/lib/ydb_cli/common/recursive_remove.cpp @@ -107,6 +107,7 @@ TStatus RemoveDirectoryRecursive( } break; + case ESchemeEntryType::ColumnTable: case ESchemeEntryType::Table: if (auto result = Remove(&RemoveTable, tableClient, entry, prompt, settings); !result.IsSuccess()) { return result; |