Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit f57477e

Browse files
committed
> 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
1 parent 8837164 commit f57477e

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

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

+1-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
/**
1414
* This class provides information about the database as a whole.
1515
*
16-
* $Id: DatabaseMetaData.java,v 1.30 2001/09/06 03:20:30 momjian Exp $
16+
* $Id: DatabaseMetaData.java,v 1.31 2001/09/06 12:53:15 momjian Exp $
1717
*
1818
* <p>Many of the methods here return lists of information in ResultSets. You
1919
* can use the normal ResultSet methods such as getString and getInt to
@@ -1973,8 +1973,6 @@ public java.sql.ResultSet getColumns(String catalog, String schemaPattern, Strin
19731973
"order by" +
19741974
" c.relname, a.attnum");
19751975

1976-
System.out.println(sql);
1977-
19781976
java.sql.ResultSet r = connection.ExecSQL(sql.toString());
19791977
while (r.next()) {
19801978
byte[][] tuple = new byte[18][0];

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

+1-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
/**
1414
* This class provides information about the database as a whole.
1515
*
16-
* $Id: DatabaseMetaData.java,v 1.34 2001/09/06 03:20:30 momjian Exp $
16+
* $Id: DatabaseMetaData.java,v 1.35 2001/09/06 12:53:15 momjian Exp $
1717
*
1818
* <p>Many of the methods here return lists of information in ResultSets. You
1919
* can use the normal ResultSet methods such as getString and getInt to
@@ -1973,8 +1973,6 @@ public java.sql.ResultSet getColumns(String catalog, String schemaPattern, Strin
19731973
"order by" +
19741974
" c.relname, a.attnum");
19751975

1976-
System.out.println(sql);
1977-
19781976
java.sql.ResultSet r = connection.ExecSQL(sql.toString());
19791977
while (r.next()) {
19801978
byte[][] tuple = new byte[18][0];

0 commit comments

Comments
 (0)