pgsql/src/interfaces/jdbc/org/postgresql/jdbc1 (DatabaseMetaData.java)

From: Bruce Momjian - CVS <momjian>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql/src/interfaces/jdbc/org/postgresql/jdbc1 (DatabaseMetaData.java)
Date: 2000-09-12 18:56:04
Message-ID: 200009121856.e8CIu4g77993@hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers pgsql-hackers

Date: Tuesday, September 12, 2000 @ 14:56:03
Author: momjian

Update of /home/projects/pgsql/cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc1
from hub.org:/home/projects/pgsql/tmp/cvs-serv77884/pgsql/src/interfaces/jdbc/org/postgresql/jdbc1

Modified Files:
DatabaseMetaData.java

----------------------------- Log Message -----------------------------

As if my JDBC patch hasn't already caused enough grief, there is now a
one-line change necessary. Due to the Mark Holloman "New Relkind for
Views" patch, my support for views in the driver will need to be updated
to match. The change to DatabaseMetaData.getTableTypes[][] is as
follows:

- {"VIEW", "(relkind='r' and relhasrules='t' and relname !~
'^pg_' and relname !~ '^xinv')"},
+ {"VIEW", "(relkind='v' and relname !~ '^pg_' and relname
!~ '^xinv')"},

Christopher Cain

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2000-09-12 19:39:43 pgsql/src/backend/utils/adt (quote.c)
Previous Message Tom Lane 2000-09-12 16:48:56 pgsql/src/backend/commands (remove.c)

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2000-09-12 20:14:00 Doesn't anyone around here run the regression tests on patches?
Previous Message Thomas Lockhart 2000-09-12 16:45:28 Re: Weird function behavior from Sept 11 snapshot