forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit339ce34
committed
As if my JDBC patch hasn't already caused enough grief, there is now a
one-line change necessary. Due to the Mark Holloman "New Relkind forViews" patch, my support for views in the driver will need to be updatedto match. The change to DatabaseMetaData.getTableTypes[][] is asfollows:- {"VIEW", "(relkind='r' and relhasrules='t' and relname !~'^pg_' and relname !~ '^xinv')"},+ {"VIEW", "(relkind='v' and relname !~ '^pg_' and relname!~ '^xinv')"},Christopher Cain1 parentcdc7170 commit339ce34
File tree
2 files changed
+2
-2
lines changed- src/interfaces/jdbc/org/postgresql
- jdbc1
- jdbc2
2 files changed
+2
-2
lines changedLines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1722 | 1722 |
| |
1723 | 1723 |
| |
1724 | 1724 |
| |
1725 |
| - | |
| 1725 | + | |
1726 | 1726 |
| |
1727 | 1727 |
| |
1728 | 1728 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1722 | 1722 |
| |
1723 | 1723 |
| |
1724 | 1724 |
| |
1725 |
| - | |
| 1725 | + | |
1726 | 1726 |
| |
1727 | 1727 |
| |
1728 | 1728 |
| |
|
0 commit comments
Comments
(0)