> Patch applied. Thanks.
Thanks. However, I seem to have left a single debug statement in there :-( Here's a patch to remove it. Vianen, Jeroen van
This commit is contained in:
parent
8837164730
commit
f57477e651
src/interfaces/jdbc/org/postgresql
@ -13,7 +13,7 @@ import org.postgresql.util.PSQLException;
|
||||
/**
|
||||
* This class provides information about the database as a whole.
|
||||
*
|
||||
* $Id: DatabaseMetaData.java,v 1.30 2001/09/06 03:20:30 momjian Exp $
|
||||
* $Id: DatabaseMetaData.java,v 1.31 2001/09/06 12:53:15 momjian Exp $
|
||||
*
|
||||
* <p>Many of the methods here return lists of information in ResultSets. You
|
||||
* can use the normal ResultSet methods such as getString and getInt to
|
||||
@ -1973,8 +1973,6 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
|
||||
"order by" +
|
||||
" c.relname, a.attnum");
|
||||
|
||||
System.out.println(sql);
|
||||
|
||||
java.sql.ResultSet r = connection.ExecSQL(sql.toString());
|
||||
while (r.next()) {
|
||||
byte[][] tuple = new byte[18][0];
|
||||
|
@ -13,7 +13,7 @@ import org.postgresql.util.PSQLException;
|
||||
/**
|
||||
* This class provides information about the database as a whole.
|
||||
*
|
||||
* $Id: DatabaseMetaData.java,v 1.34 2001/09/06 03:20:30 momjian Exp $
|
||||
* $Id: DatabaseMetaData.java,v 1.35 2001/09/06 12:53:15 momjian Exp $
|
||||
*
|
||||
* <p>Many of the methods here return lists of information in ResultSets. You
|
||||
* can use the normal ResultSet methods such as getString and getInt to
|
||||
@ -1973,8 +1973,6 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
|
||||
"order by" +
|
||||
" c.relname, a.attnum");
|
||||
|
||||
System.out.println(sql);
|
||||
|
||||
java.sql.ResultSet r = connection.ExecSQL(sql.toString());
|
||||
while (r.next()) {
|
||||
byte[][] tuple = new byte[18][0];
|
||||
|
Loading…
x
Reference in New Issue
Block a user