Skip to content

Commit 1f908de

Browse files
committed
Fixed PR comments ydb-platform#2
1 parent c95fc8d commit 1f908de

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ydb/core/kqp/provider/yql_kikimr_gateway.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -790,7 +790,7 @@ class IKikimrGateway : public TThrRefBase {
790790
virtual NThreading::TFuture<TTableMetadataResult> LoadTableMetadata(
791791
const TString& cluster, const TString& table, TLoadTableMetadataSettings settings) = 0;
792792

793-
virtual NThreading::TFuture<TGenericResult> CreateTable(TKikimrTableMetadataPtr metadata, bool createDir, bool existingOk = false, bool isReplace = false) = 0;
793+
virtual NThreading::TFuture<TGenericResult> CreateTable(TKikimrTableMetadataPtr metadata, bool createDir, bool existingOk = false, bool replaceIfExists = false) = 0;
794794

795795
virtual NThreading::TFuture<TGenericResult> SendSchemeExecuterRequest(const TString& cluster,
796796
const TMaybe<TString>& requestType,

ydb/services/metadata/abstract/parsing.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class TObjectSettingsImpl {
4848
ObjectId = data.ObjectId();
4949
TypeId = data.TypeId();
5050
if constexpr (NObjectOptionsParsing::THasReplaceIfExists<TKiObject>::value) {
51-
ReplaceIfExists = (data.IsReplace().Value() == "1");
51+
ReplaceIfExists = (data.ReplaceIfExists().Value() == "1");
5252
}
5353
if constexpr (NObjectOptionsParsing::THasExistingOk<TKiObject>::value) {
5454
ExistingOk = (data.ExistingOk().Value() == "1");

0 commit comments

Comments
 (0)