From 9a34d7a78a89e5e1ad0e667c3bbc4a391165b0de Mon Sep 17 00:00:00 2001 From: Horst Schirmeier Date: Thu, 20 Nov 2014 15:50:38 +0100 Subject: [PATCH] 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 --- tools/analysis/VisualFAIL/core.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/analysis/VisualFAIL/core.php b/tools/analysis/VisualFAIL/core.php index d8a11179..c716bced 100644 --- a/tools/analysis/VisualFAIL/core.php +++ b/tools/analysis/VisualFAIL/core.php @@ -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
'); 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
'); return; } +*/ } function getBinarys()