After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 71484 - Error in postgres provider when getting aggregates meta data
Error in postgres provider when getting aggregates meta data
Status: RESOLVED FIXED
Product: libgda
Classification: Other
Component: PostgreSQL provider
unspecified
Other Linux
: Normal normal
: ---
Assigned To: danmorg
Rodrigo Moya
Depends on:
Blocks:
 
 
Reported: 2002-02-14 15:07 UTC by danmorg
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description danmorg 2002-02-14 15:07:08 UTC
Various errors when clicking on the Attributes tab in gnomedb-fe.  This is
actually a libgda problem.  The table structure in Postgres may have
changed between version.

The error message shown is:

  ERROR:  Attribute 'aggname' not found

The problem is caused by an ORDER BY which can be fixed with


  ERROR: oidin: error in "avg": can't parse "avg"

  an error occurred in the CORBA system
Comment 1 danmorg 2002-02-14 15:24:28 UTC
The ORDER BY can be fixed with:

   ORDER BY 1,3

or

   ORDER BY "Name", "IN Type"

When this is fixed, the other two errors mentioned in the original
comment above are shown.

This is because the constraint value passed in is a string, such as,
aggregate name (aggname) 'avg' and is being compared to a numeric
object id (oid) 16982.

The constraint value needs to be compared to the aggregate name
(a.aggname).  

Here is a working query to retrieve all aggregates:

SELECT a.aggname AS "Name", a.oid AS "Object Id",
 t.typname as "IN Type",obj_description(a.oid) AS "Comments" 
FROM pg_aggregate a, pg_type t, pg_user b 
WHERE a.aggbasetype = t.oid AND b.usesysid=a.aggowner

UNION

SELECT a.aggname AS "Name", a.oid AS "Object Id", '---' AS "IN Type", 
 obj_description(a.oid) AS "Comments"
FROM pg_aggregate a, pg_user b
WHERE a.aggbasetype = 0
AND b.usesysid=a.aggowner
ORDER BY "Name", "IN Type";

Here is a query to retrieve an aggregate supplied by a constraint value:

SELECT a.aggname AS "Name", a.oid AS "OBject Id",
   t.typname AS "IN Type", b.usename AS "OWNER",
   obj_description(a.oid) AS "Comments",
   a.oid AS "SQL"
FROM pg_aggregate a, pg_type t, pg_user b
WHERE a.aggbasetype = t.oid AND b.usesysid=a.aggowner 
AND a.aggname='avg'

UNION 

SELECT a.aggname AS "Name", a.oid AS "Object Id", '---' AS "IN Type",
   b.usename AS "Owner", obj_description(a.oid) AS "Comments", 
   a.oid AS "SQL" 
FROM pg_aggregate a, pg_user b
WHERE a.aggbasetype = 0
AND b.usesysid=a.aggowner
AND a.aggname = 'avg'
ORDER BY 1,3;