From d4570f032a59c229f369d75f87ced5282405582e Mon Sep 17 00:00:00 2001
From: Angie Byron <webchick@24967.no-reply.drupal.org>
Date: Thu, 1 Jul 2010 15:09:11 +0000
Subject: [PATCH] #817216 follow-up by Stevel: Fixed database prefixes in
 poll_update_7001().

---
 modules/poll/poll.install | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/poll/poll.install b/modules/poll/poll.install
index 153aae78a626..8fe8ef1b7392 100644
--- a/modules/poll/poll.install
+++ b/modules/poll/poll.install
@@ -148,7 +148,7 @@ function poll_update_7001() {
   db_add_field('poll_votes', 'chid', array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0));
   db_add_index('poll_votes', 'chid', array('chid'));
   db_update('poll_votes')
-    ->expression('chid', DatabaseConnection::prefixTables('COALESCE((SELECT chid FROM {poll_choices} c WHERE {poll_votes}.chorder = c.chorder AND {poll_votes}.nid = c.nid), 0)'))
+    ->expression('chid', Database::getConnection()->prefixTables('COALESCE((SELECT chid FROM {poll_choices} c WHERE {poll_votes}.chorder = c.chorder AND {poll_votes}.nid = c.nid), 0)'))
     ->execute();
   // Delete invalid votes.
   db_delete('poll_votes')->condition('chid', 0)->execute();
-- 
GitLab