We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5251807 commit d9e2a08Copy full SHA for d9e2a08
br/pkg/task/restore.go
@@ -2241,6 +2241,10 @@ func createDBsAndTables(
2241
func setTablesRestoreModeIfNeeded(tables []*metautil.Table, cfg *SnapshotRestoreConfig, isPiTR bool) {
2242
if cfg.ExplicitFilter && isPiTR {
2243
for i, table := range tables {
2244
+ // skip sequence as there is extra steps need to do after creation and restoreMode will block it
2245
+ if table.Info.IsSequence() {
2246
+ continue
2247
+ }
2248
tableCopy := *table
2249
tableCopy.Info = table.Info.Clone()
2250
tableCopy.Info.Mode = model.TableModeRestore
0 commit comments