File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/interfaces/jdbc/org/postgresql/jdbc1 Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -858,16 +858,16 @@ public boolean supportsANSI92FullSQL() throws SQLException
858
858
859
859
/*
860
860
* Is the SQL Integrity Enhancement Facility supported?
861
- * I haven't seen this mentioned anywhere, so I guess not
861
+ * Our best guess is that this means support for constraints
862
862
*
863
863
* @return true if so
864
864
* @exception SQLException if a database access error occurs
865
865
*/
866
866
public boolean supportsIntegrityEnhancementFacility () throws SQLException
867
867
{
868
868
if (Driver .logDebug )
869
- Driver .debug ("supportsIntegrityEnhancementFacility false " );
870
- return false ;
869
+ Driver .debug ("supportsIntegrityEnhancementFacility true " );
870
+ return true ;
871
871
}
872
872
873
873
/*
You can’t perform that action at this time.
0 commit comments