Line 593 in version 1.109 of database.pgsql is problematic. The line creates a unique index for sid. But, sid is already a primary key so doesn't need a unique index on it. Let alone, the syntax is wrong due to wrapping the table name in {}'s. This patch removes the line.

CommentFileSizeAuthor
database.pgsql.sessions.diff443 bytesdanielc
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

rkendall’s picture

I was going to say something about braces {} around table names being used to add a 'table prefix', but realised that they are not supposed to be in this file - as it doesn't get processed by drupal.

+1

Dries’s picture

Committed to HEAD. Thanks.

Anonymous’s picture