diff --git a/core/modules/pgsql/src/Driver/Database/pgsql/Schema.php b/core/modules/pgsql/src/Driver/Database/pgsql/Schema.php index c164b1f09a..59aee09297 100644 --- a/core/modules/pgsql/src/Driver/Database/pgsql/Schema.php +++ b/core/modules/pgsql/src/Driver/Database/pgsql/Schema.php @@ -720,7 +720,7 @@ public function indexExists($table, $name) { // Remove leading and trailing quotes because the index name is in a WHERE // clause and not used as an identifier. $index_name = str_replace('"', '', $index_name); - + $sql_params = [ ':schema' => $this->defaultSchema, ':table' => $this->connection->getPrefix() . $table,