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:
Horst Schirmeier
2014-11-20 15:50:38 +01:00
parent 0ed1a4e306
commit 9a34d7a78a

View File

@ -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()