CC-4873: Airtime takes 7 seconds to load 32K (very small) from db

-added a 5 second grace period for checking if shows are partially filled
This commit is contained in:
denise 2013-01-23 16:31:20 -05:00
parent 9714b44d7f
commit adaab6ba96
1 changed files with 1 additions and 1 deletions

View File

@ -688,7 +688,7 @@ SQL;
public static function getIsFull($p_start, $p_end)
{
$sql = <<<SQL
SELECT id, ends-starts < time_filled as filled
SELECT id, ends-starts-'00:00:05' < time_filled as filled
from cc_show_instances
WHERE ends > :p_start::TIMESTAMP
AND starts < :p_end::TIMESTAMP