visualfail: comment out checks for unneeded tables
The dbg_methods, dbg_variables and dbg_stacktrace tables are not needed by the current VisualFAIL implementation. Change-Id: I5f685c7d8100fe57fb2a23e1f8161770e64c9464
This commit is contained in:
@ -64,15 +64,16 @@ function dbTest()
|
||||
return;
|
||||
}
|
||||
|
||||
/*
|
||||
$abfrage = "SELECT 1 FROM dbg_methods;";
|
||||
|
||||
|
||||
$ergebnis = mysql_query($abfrage);
|
||||
|
||||
if(!$ergebnis) {
|
||||
echo json_encode('Tabelle dbg_methods nicht gefunden <br>');
|
||||
return;
|
||||
}
|
||||
*/
|
||||
|
||||
$abfrage = "SELECT 1 FROM dbg_source;";
|
||||
|
||||
@ -83,6 +84,7 @@ function dbTest()
|
||||
return;
|
||||
}
|
||||
|
||||
/*
|
||||
$abfrage = "SELECT 1 FROM dbg_stacktrace;";
|
||||
|
||||
$ergebnis = mysql_query($abfrage);
|
||||
@ -100,6 +102,7 @@ function dbTest()
|
||||
echo json_encode('Tabelle dbg_variables nicht gefunden <br>');
|
||||
return;
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
||||
function getBinarys()
|
||||
|
||||
Reference in New Issue
Block a user