File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,6 @@ ydb/core/persqueue/ut/ut_with_sdk TopicAutoscaling.ReadingAfterSplitTest_Prefere
42
42
ydb/core/persqueue/ut/ut_with_sdk [*/*]*
43
43
ydb/core/tx/coordinator/ut Coordinator.RestoreTenantConfiguration
44
44
ydb/core/tx/datashard/ut_change_exchange Cdc.InitialScanDebezium
45
- ydb/core/tx/datashard/ut_incremental_backup IncrementalBackup.BackupRestore
46
45
ydb/core/tx/schemeshard/ut_restore TImportTests.ShouldSucceedOnManyTables
47
46
ydb/core/tx/schemeshard/ut_split_merge TSchemeShardSplitBySizeTest.Merge1KShards
48
47
ydb/core/tx/tx_proxy/ut_ext_tenant TExtSubDomainTest.CreateTableInsideAndAlterDomainAndTable-AlterDatabaseCreateHiveFirst*
Original file line number Diff line number Diff line change @@ -391,6 +391,11 @@ const TPath::TChecker& TPath::TChecker::NotAsyncReplicaTable(EStatus status) con
391
391
return *this ;
392
392
}
393
393
394
+ // do not treat incr backup tables as async replica
395
+ if (Path->IsIncrementalBackupTable ()) {
396
+ return *this ;
397
+ }
398
+
394
399
return Fail (status, TStringBuilder () << " path is an async replica table"
395
400
<< " (" << BasicPathInfo (Path.Base ()) << " )" );
396
401
}
@@ -1633,7 +1638,6 @@ bool TPath::IsAsyncReplicaTable() const {
1633
1638
return false ;
1634
1639
}
1635
1640
1636
- TPathElement::TPtr path = SS->PathsById .at (Base ()->PathId );
1637
1641
TTableInfo::TCPtr tableInfo = SS->Tables .at (Base ()->PathId );
1638
1642
1639
1643
return tableInfo->IsAsyncReplica ();
You can’t perform that action at this time.
0 commit comments