Skip to content

Commit 710a711

Browse files
author
Dave Cramer
committed
fixed getColumns as per Panu Outinen's email. At this point have only repaired the bug, haven't made it caseInsensitive
1 parent cc592ed commit 710a711

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
/*
1616
* This class provides information about the database as a whole.
1717
*
18-
* $Id: DatabaseMetaData.java,v 1.51 2002/03/05 03:02:52 davec Exp $
18+
* $Id: DatabaseMetaData.java,v 1.52 2002/04/16 13:28:44 davec Exp $
1919
*
2020
* <p>Many of the methods here return lists of information in ResultSets. You
2121
* can use the normal ResultSet methods such as getString and getInt to
@@ -2146,6 +2146,7 @@ public java.sql.ResultSet getColumns(String catalog, String schemaPattern, Strin
21462146
tuple[16] = r.getBytes(5); // ordinal position
21472147
tuple[17] = (nullFlag.equals("f") ? "YES" : "NO").getBytes(); // Is nullable
21482148

2149+
v.addElement(tuple);
21492150
}
21502151
r.close();
21512152

0 commit comments

Comments
 (0)