forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit879639b
committed
This patch for the 7.0.2 JDBC interface addresses four issues I
encountered while getting my reporting tool up and running with thedriver. All changes are in the DatabaseMetaData class.Problem: The getDatabaseProductVersion() method was returning "6.5.2"Resolution: Changed it to return "7.0.2"Problem: A call to getTables() with an unsupported table type (in theString array) resulted in a malformed SQL statement and subsequentparsing errorResolution: Unsupported table types are now ignored without errorProblem: In a getTables() call, tables and views were both returned bythe "TABLE" table type, and the "VIEW" table type was unsupportedResolution: Changed the "TABLE" type to return only physical tables andadded support for the "VIEW" table type (returning only views)Problem: The getIdentifierQuoteString() method was returning nullResolution: This method now returns a double-quoteChristopher Cain1 parent0ba0e32 commit879639b
File tree
2 files changed
+14
-12
lines changed- src/interfaces/jdbc/org/postgresql
- jdbc1
- jdbc2
2 files changed
+14
-12
lines changedLines changed: 7 additions & 6 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
179 | 179 |
| |
180 | 180 |
| |
181 | 181 |
| |
182 |
| - | |
| 182 | + | |
183 | 183 |
| |
184 | 184 |
| |
185 | 185 |
| |
| |||
363 | 363 |
| |
364 | 364 |
| |
365 | 365 |
| |
366 |
| - | |
| 366 | + | |
367 | 367 |
| |
368 | 368 |
| |
369 | 369 |
| |
| |||
1654 | 1654 |
| |
1655 | 1655 |
| |
1656 | 1656 |
| |
1657 |
| - | |
1658 |
| - | |
1659 | 1657 |
| |
1660 | 1658 |
| |
| 1659 | + | |
| 1660 | + | |
1661 | 1661 |
| |
1662 | 1662 |
| |
1663 | 1663 |
| |
| |||
1706 | 1706 |
| |
1707 | 1707 |
| |
1708 | 1708 |
| |
1709 |
| - | |
| 1709 | + | |
| 1710 | + | |
1710 | 1711 |
| |
1711 | 1712 |
| |
1712 | 1713 |
| |
| |||
1717 | 1718 |
| |
1718 | 1719 |
| |
1719 | 1720 |
| |
1720 |
| - | |
| 1721 | + | |
1721 | 1722 |
| |
1722 | 1723 |
| |
1723 | 1724 |
| |
|
Lines changed: 7 additions & 6 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
179 | 179 |
| |
180 | 180 |
| |
181 | 181 |
| |
182 |
| - | |
| 182 | + | |
183 | 183 |
| |
184 | 184 |
| |
185 | 185 |
| |
| |||
363 | 363 |
| |
364 | 364 |
| |
365 | 365 |
| |
366 |
| - | |
| 366 | + | |
367 | 367 |
| |
368 | 368 |
| |
369 | 369 |
| |
| |||
1654 | 1654 |
| |
1655 | 1655 |
| |
1656 | 1656 |
| |
1657 |
| - | |
1658 |
| - | |
1659 | 1657 |
| |
1660 | 1658 |
| |
| 1659 | + | |
| 1660 | + | |
1661 | 1661 |
| |
1662 | 1662 |
| |
1663 | 1663 |
| |
| |||
1706 | 1706 |
| |
1707 | 1707 |
| |
1708 | 1708 |
| |
1709 |
| - | |
| 1709 | + | |
| 1710 | + | |
1710 | 1711 |
| |
1711 | 1712 |
| |
1712 | 1713 |
| |
| |||
1717 | 1718 |
| |
1718 | 1719 |
| |
1719 | 1720 |
| |
1720 |
| - | |
| 1721 | + | |
1721 | 1722 |
| |
1722 | 1723 |
| |
1723 | 1724 |
| |
|
0 commit comments
Comments
(0)