sQL: No "NOT NULL" on text fields.

This commit is contained in:
Michael Vogel 2016-09-03 15:06:42 +00:00
parent 014fc5dccb
commit 6df40b1161
3 changed files with 208 additions and 208 deletions

View file

@ -20,8 +20,8 @@ class dbm {
foreach ($r AS $process) {
$state = trim($process["State"]);
// Filter out all idle processes
if (!in_array($state, array("", "init", "statistics"))) {
// Filter out all non blocking processes
if (!in_array($state, array("", "init", "statistics", "updating"))) {
++$states[$state];
++$processes;
}