There is a bug with postgresql and this line :
db_query("UPDATE {comment_notify} c SET c.notify = 0 WHERE notify_hash = '%s'", $arg);

It seems that "c" aliasing is not working but this is working :
db_query("UPDATE {comment_notify} SET notify = 0 WHERE notify_hash = '%s'", $arg);

CommentFileSizeAuthor
#2 comment_notify.patch702 bytesYoran
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

greggles’s picture

Status: Needs review » Active

I know it's small, but could you make an actual patch?

Yoran’s picture

FileSize
702 bytes

You are very lasy today :-)

Well... Here it is :)

greggles’s picture

Status: Active » Fixed

I tested this on mysql for 6.x and it worked fine. Committed to 6 and backported to 5. Thanks!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.