diff options
author | mkanat%kerio.com <> | 2005-03-12 04:06:11 +0100 |
---|---|---|
committer | mkanat%kerio.com <> | 2005-03-12 04:06:11 +0100 |
commit | 9ddbd40c8fc8244e52981a90247c68c06f46ef5b (patch) | |
tree | 7ec0009c9b49a5b0ca2df743a4a9dd5f68ab7d44 | |
parent | 16eccfdc8fcb6efbfb602f47ab5ae15c7c4ac3de (diff) | |
download | bugzilla-9ddbd40c8fc8244e52981a90247c68c06f46ef5b.tar.gz bugzilla-9ddbd40c8fc8244e52981a90247c68c06f46ef5b.tar.xz |
Bug 285678: NOT(integer) not supported by postgres
Patch By Tomas Kopal <Tomas.Kopal@altap.cz> r=mkanat, a=myk
-rw-r--r-- | CGI.pl | 2 | ||||
-rwxr-xr-x | editproducts.cgi | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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), diff --git a/editproducts.cgi b/editproducts.cgi index db391228b..ea4bc5e5b 100755 --- a/editproducts.cgi +++ b/editproducts.cgi @@ -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"; |