Commit 47cb1c3f authored by Barry Lind's avatar Barry Lind

A minor fix to jdbc regression tests

 Modified Files:
 	jdbc/org/postgresql/test/jdbc2/DatabaseMetaDataPropertiesTest.java
parent 6b73da67
...@@ -84,7 +84,7 @@ public class DatabaseMetaDataPropertiesTest extends TestCase ...@@ -84,7 +84,7 @@ public class DatabaseMetaDataPropertiesTest extends TestCase
assertTrue(!dbmd.supportsANSI92IntermediateSQL()); assertTrue(!dbmd.supportsANSI92IntermediateSQL());
assertTrue(!dbmd.supportsANSI92FullSQL()); assertTrue(!dbmd.supportsANSI92FullSQL());
assertTrue(!dbmd.supportsIntegrityEnhancementFacility()); assertTrue(dbmd.supportsIntegrityEnhancementFacility());
} }
catch (SQLException ex) catch (SQLException ex)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment