Unverified Commit 027a83b8 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3058853 by hubaishan, jhmnieuwenhuis, x0r1x, daffie, xekon, andypost,...

Issue #3058853 by hubaishan, jhmnieuwenhuis, x0r1x, daffie, xekon, andypost, qdelance, lamigo, jmonkfish: Drupal 8.x on Postgresql 12

(cherry picked from commit 2dfe5f52)
parent 403f13dd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -140,7 +140,7 @@ public function queryTableInformation($table) {
AND NOT pg_attribute.attisdropped
AND pg_attribute.attrelid = :key::regclass
AND (format_type(pg_attribute.atttypid, pg_attribute.atttypmod) = 'bytea'
OR pg_attrdef.adsrc LIKE 'nextval%')
OR pg_get_expr(pg_attrdef.adbin, pg_attribute.attrelid) LIKE 'nextval%')
EOD;
        $result = $this->connection->query($sql, [
          ':key' => $key,