Re: [JDBC] Error in DatabaseMetaData.getColumns() with Views

From: "Dario V(dot) Fassi" <software(at)sistemat(dot)com(dot)ar>
To: pgsql-jdbc(at)postgresql(dot)org, pgsql-bugs(at)postgresql(dot)org, pgsql-sql(at)postgresql(dot)org, pgsql-patches(at)postgresql(dot)org
Subject: Re: [JDBC] Error in DatabaseMetaData.getColumns() with Views
Date: 2004-07-03 18:39:59
Message-ID: 40E6FD7F.50801@sistemat.com.ar
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs pgsql-jdbc pgsql-patches pgsql-sql

I have found that the problem is worst.

In the sample adjunct, you can see that error arise at the time when the
view's sql text is parsed and saved in database catalog.
Then generic NUMERIC type is forced for every calculated column without
regard or precision.
And at execute time the f2 column has varying type decimals (in row 2
you can see 4 decimals and in other rows has 3 decimals), this is not a
behavior , this is an ERROR.

Precision calculation in Numeric fields it's not so difficult.
This problem *must* be corrected in the CREATE VIEW sentence ,
and I offer my collaboration for that.

Regards all,
Dario Fassi.

Dario V. Fassi wrote:

>
> Kris Jurka wrote:
>
>>On Fri, 2 Jul 2004, Dario Fassi wrote:
>>
>>
>>
>>>Hi, I wish to report a erroneous information returned by
>>>DatabaseMetaData.getColumns() method.
>>>
>>>This happens with ResultSet's column (7) COLUMN_SIZE and (9)
>>>DECIMAL_DIGITS ,
>>>when DatabaseMetaData.getColumns() inform about a VIEW with columns
>>>formed with :
>>>coalesce , case or numeric operations over DECIMAL fields.
>>>
>>>Suppose
>>>
>>>CREATE TABLE A ( f1 DEC(6,3), f2 dec(6,3) );
>>>CREATE VIEW B as ( select ( f1 + f2 ) as f from a;
>>>
>>>Then DatabaseMetaData.getColumns() returns:
>>>
>>>VIEW B
>>> F NUMERIC( 65535 , -65531 )
>>>
>>>
>>>
>>
>>The problem is that f1+f2 does not retain the numeric(6,3) size
>>restriction, but turns into an unbounded plain "numeric" data type. So
>>when retrieving this data the precision/scale are unavailable and the
>>unreasonable values you see are returned. We could return NULL instead,
>>but I'm not sure that would be much more helpful if the client is
>>expecting real values. Any other ideas?
>>
>>Kris Jurka
>>
>>
> Yes, a few.
>
> In the tool named PgManage (come with the commercial version of
> Mammoth) , the information is accurate values for this MetaData, and
> I believe, they get that values from pqsql catalog tables and not from
> DatabaseMetaData interface.
>
> More even, the engine resolve the View properly and return data values
> properly typed (engine return 999.999 for f1+f2 and 999.999999 for
> f1*f2 , like is expected).
> So, the information if know or derived en some way for the engine ,
> and/or is contained some where in catalog's tables.
>
> I'm working in CodeGeneration tools for many DB engines (DB2, Oracle,
> MS-Sql, PostgreSql, etc) , and it's impossible not to use generic
> DatabaseMetaData interface to obtain metadata information. So this is
> a very important problem for me.
>
> DB2 for example do, data type escalation based on "Error propagation
> Theory " , that has rules (I'm not and expert in the field) like :
>
> [dec(6,a) + dec(6,b) ] -> [ dec( 6, max(a,b) ) ]
> [ coalesce( dec(6,a) , dec(6,b) ] -> [ dec[ 6, max(a,b)] ]
> [ case( dec(6,a) , dec(6,b), dec(6,c), dec(6,d) ] -> [ dec[ 6,
> max(a,b,c,d)] ]
> [dec(6,a) * dec(6,b ) -> [ dec( 6,a+b ) ]
> etc.
>
> This rules are taken into account in the engine data formation
> process, but there are stored some where ???
>
> Thanks for your answer.
> Dario V. Fassi
>

Attachment Content-Type Size
samp.txt text/plain 1.9 KB

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Kris Jurka 2004-07-04 19:16:56 Re: [JDBC] Error in DatabaseMetaData.getColumns() with Views
Previous Message Dario V. Fassi 2004-07-03 17:06:55 Re: Error in DatabaseMetaData.getColumns() with Views

Browse pgsql-jdbc by date

  From Date Subject
Next Message Kris Jurka 2004-07-04 19:16:56 Re: [JDBC] Error in DatabaseMetaData.getColumns() with Views
Previous Message Dario Fassi 2004-07-03 17:46:49 Re: Error in DatabaseMetaData.getColumns() with Views

Browse pgsql-patches by date

  From Date Subject
Next Message Christopher Kings-Lynne 2004-07-04 09:44:23 Re: plperl support for older perl versions
Previous Message Dario V. Fassi 2004-07-03 17:06:55 Re: Error in DatabaseMetaData.getColumns() with Views

Browse pgsql-sql by date

  From Date Subject
Next Message Kris Jurka 2004-07-04 19:16:56 Re: [JDBC] Error in DatabaseMetaData.getColumns() with Views
Previous Message ctrl 2004-07-03 18:19:50 Re: best method to copy data across databases