Commit 9ddbd40c authored by mkanat%kerio.com's avatar mkanat%kerio.com

Bug 285678: NOT(integer) not supported by postgres

Patch By Tomas Kopal <Tomas.Kopal@altap.cz> r=mkanat, a=myk
parent 16eccfdc
......@@ -304,7 +304,7 @@ sub GetBugActivity {
if (Param("insidergroup") && !UserInGroup(Param('insidergroup'))) {
$suppjoins = "LEFT JOIN attachments
ON attachments.attach_id = bugs_activity.attach_id";
$suppwhere = "AND NOT(COALESCE(attachments.isprivate,0))";
$suppwhere = "AND COALESCE(attachments.isprivate, 0) = 0";
}
my $query = "
SELECT COALESCE(fielddefs.description, bugs_activity.fieldid),
......
......@@ -339,7 +339,7 @@ unless ($action) {
my $query = "SELECT products.name,
COALESCE(products.description,'') AS description,
NOT(disallownew) AS status,
disallownew = 0 AS status,
votesperuser, maxvotesperbug, votestoconfirm,
COUNT(bug_id) AS bug_count
FROM products";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment