Commit e071abac authored by unknown's avatar unknown

bug#11942 - ndb backup with parallell DDL

  add testcase to autotest


ndb/src/kernel/blocks/dbdict/Dbdict.cpp:
  remove ;
ndb/test/run-test/daily-basic-tests.txt:
  add test case
parent 783dbfc3
......@@ -2800,7 +2800,7 @@ Dbdict::execBACKUP_FRAGMENT_REQ(Signal* signal)
ndbrequire(tablePtr.p->tabState == TableRecord::DEFINED);
tablePtr.p->tabState = TableRecord::BACKUP_ONGOING;
}
else if(tablePtr.p->tabState == TableRecord::BACKUP_ONGOING);
else if(tablePtr.p->tabState == TableRecord::BACKUP_ONGOING)
{
tablePtr.p->tabState = TableRecord::DEFINED;
}
......
......@@ -54,6 +54,10 @@ max-time: 600
cmd: atrt-testBackup
args: -n BackupOne T1 T6 T3 I3
max-time: 600
cmd: atrt-testBackup
args: -n BackupDDL T1
# BASIC FUNCTIONALITY
max-time: 500
cmd: testBasic
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment