Skip to content

Commit 474a5c9

Browse files
author
s2m1
committed
Добавил HiveMetastore, чтобы выполнить переименование
Необходимо в gateways\_config.proto переименовать Hive в HiveMetastore так как это заезжает в github через аркадию, то сделаю в три этапа: 1. Этот PR добавляет HiveMetastore 2. После того как он попадет в Github перепишу код 3. Удалю Hive и создан новый PR в arcadia commit_hash:deb8a0de7d7e39f31d968874d9e5c689eed03934
1 parent 8475274 commit 474a5c9

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

yql/essentials/providers/common/proto/gateways_config.proto

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -679,16 +679,23 @@ message TIcebergCatalog {
679679
message THadoop {
680680
}
681681

682-
// Hive Iceberg Catalog which is based on a Hive Metastore
682+
// todo: remove
683683
message THive {
684+
optional string uri = 1;
685+
}
686+
687+
// Hive Iceberg Catalog which is based on a Hive Metastore
688+
message THiveMetastore {
684689
// Location of a hive metastore
685690
// e.g., thrift://host:9083/
686691
optional string uri = 1;
687692
}
688693

689694
oneof payload {
690695
THadoop hadoop = 1;
696+
// todo: remove
691697
THive hive = 2;
698+
THiveMetastore hive_metastore = 3;
692699
}
693700
}
694701

0 commit comments

Comments
 (0)