PostgreSQL La base de donnees la plus sophistiquee au monde.

Forums PostgreSQL.fr

Le forum officiel de la communauté francophone de PostgreSQL

Vous n'êtes pas identifié(e).

#1 23/03/2023 15:59:52

mathieu760
Membre

Erreur sur la table pg_attribute dans mes logs Postgres et appli down

Bonjour,
Suite à une MAJ Drupal, la base PostgreSQL me retourne l'erreur ci-dessous :
2023-03-20 15:36:37 CET res_log_ow@10.173.2.16(47192):plogfr02ERROR:  invalid name syntax at character 409
2023-03-20 15:36:37 CET res_log_ow@10.173.2.16(47192):plogfr02STATEMENT:  SELECT pg_attribute.attname AS column_name, format_type(pg_attribute.atttypid, pg_attribute.atttypmod) AS data_type, pg_get_expr(pg_attrdef.adbin, pg_attribute.attrelid) AS column_default
        FROM pg_attribute
        LEFT JOIN pg_attrdef ON pg_attrdef.adrelid = pg_attribute.attrelid AND pg_attrdef.adnum = pg_attribute.attnum
        WHERE pg_attribute.attnum > 0
        AND NOT pg_attribute.attisdropped
        AND pg_attribute.attrelid = '.public.cache_path'::regclass
        AND (format_type(pg_attribute.atttypid, pg_attribute.atttypmod) = 'bytea'
        OR pg_get_expr(pg_attrdef.adbin, pg_attribute.attrelid)::text LIKE 'nextval%')



et l'appli ne fonctionne pas.
Avez-vous une idée svp?

Hors ligne

#2 23/03/2023 16:53:40

rjuju
Administrateur

Re : Erreur sur la table pg_attribute dans mes logs Postgres et appli down

La requête me semble invalide, à priori « .public.cache_path » n'est pas un nom de relation valide.

Hors ligne

Pied de page des forums