Commit f57477e6 authored by Bruce Momjian's avatar Bruce Momjian

> 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
parent 88371647
...@@ -13,7 +13,7 @@ import org.postgresql.util.PSQLException; ...@@ -13,7 +13,7 @@ import org.postgresql.util.PSQLException;
/** /**
* This class provides information about the database as a whole. * 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 * <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 * can use the normal ResultSet methods such as getString and getInt to
...@@ -1973,8 +1973,6 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData ...@@ -1973,8 +1973,6 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
"order by" + "order by" +
" c.relname, a.attnum"); " c.relname, a.attnum");
System.out.println(sql);
java.sql.ResultSet r = connection.ExecSQL(sql.toString()); java.sql.ResultSet r = connection.ExecSQL(sql.toString());
while (r.next()) { while (r.next()) {
byte[][] tuple = new byte[18][0]; byte[][] tuple = new byte[18][0];
......
...@@ -13,7 +13,7 @@ import org.postgresql.util.PSQLException; ...@@ -13,7 +13,7 @@ import org.postgresql.util.PSQLException;
/** /**
* This class provides information about the database as a whole. * 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 * <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 * can use the normal ResultSet methods such as getString and getInt to
...@@ -1973,8 +1973,6 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData ...@@ -1973,8 +1973,6 @@ public class DatabaseMetaData implements java.sql.DatabaseMetaData
"order by" + "order by" +
" c.relname, a.attnum"); " c.relname, a.attnum");
System.out.println(sql);
java.sql.ResultSet r = connection.ExecSQL(sql.toString()); java.sql.ResultSet r = connection.ExecSQL(sql.toString());
while (r.next()) { while (r.next()) {
byte[][] tuple = new byte[18][0]; byte[][] tuple = new byte[18][0];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment