]> granicus.if.org Git - postgresql/commitdiff
> Patch applied. Thanks.
authorBruce Momjian <bruce@momjian.us>
Thu, 6 Sep 2001 12:53:15 +0000 (12:53 +0000)
committerBruce Momjian <bruce@momjian.us>
Thu, 6 Sep 2001 12:53:15 +0000 (12:53 +0000)
Thanks. However, I seem to have left a single debug statement in there :-(

Here's a patch to remove it.

Vianen, Jeroen van

src/interfaces/jdbc/org/postgresql/jdbc1/DatabaseMetaData.java
src/interfaces/jdbc/org/postgresql/jdbc2/DatabaseMetaData.java

index 2d9ab35a93c7bf7bcc1f85448dcec125e3087915..986df4ed7358176d7fbebb5fe7332a1c1edf165b 100644 (file)
@@ -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];
index b41f446f975c2533b0f44acf4f20fd8d92fa1a96..4d39f87dae99ce6b3e687d587389e606ba41a5a1 100644 (file)
@@ -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];