Merge remote-tracking branch 'origin/QA_4_5' into QA_4_5
This commit is contained in:
commit
78bbdc53db
@ -162,10 +162,11 @@ class ImportSql extends ImportPlugin
|
||||
}
|
||||
|
||||
// Extracting remaining statements.
|
||||
while ((!$error) && (!$timeout_passed)
|
||||
&& ($statement = $bq->extract(true))
|
||||
) {
|
||||
PMA_importRunQuery($statement, $statement, false, $sql_data);
|
||||
while ((!$error) && (!$timeout_passed) && (!empty($bq->query))) {
|
||||
$statement = $bq->extract(true);
|
||||
if (!empty($statement)) {
|
||||
PMA_importRunQuery($statement, $statement, false, $sql_data);
|
||||
}
|
||||
}
|
||||
|
||||
// Finishing.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user