Skip to content

Commit 2d63f85

Browse files
committed
fix
1 parent 4af1121 commit 2d63f85

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

ydb/core/tx/schemeshard/schemeshard__operation_create_cdc_stream.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ void DoCreateStream(
2828
const TPath& tablePath,
2929
const bool acceptExisted,
3030
const bool initialScan,
31+
const TString& indexName,
3132
TVector<ISubOperation::TPtr>& result);
3233

3334
void DoCreatePqPart(

ydb/core/tx/schemeshard/schemeshard__operation_create_continuous_backup.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ TVector<ISubOperation::TPtr> CreateNewContinuousBackup(TOperationId opId, const
6868

6969
TVector<ISubOperation::TPtr> result;
7070

71-
NCdc::DoCreateStream(createCdcStreamOp, opId, workingDirPath, tablePath, acceptExisted, false, result);
71+
NCdc::DoCreateStream(createCdcStreamOp, opId, workingDirPath, tablePath, acceptExisted, false, {}, result);
7272
NCdc::DoCreatePqPart(opId, streamPath, NBackup::CB_CDC_STREAM_NAME, table, createCdcStreamOp, boundaries, acceptExisted, result);
7373

7474
return result;

0 commit comments

Comments
 (0)