Skip test on array of records on PG 8.3

This commit is contained in:
Daniele Varrazzo 2011-10-05 00:44:44 +01:00
parent e4424bdfdc
commit 5fa1729000

View File

@ -621,7 +621,7 @@ class AdaptTypeTestCase(unittest.TestCase):
self.assertEqual(curs.fetchone()[0], (4,8))
@skip_if_no_composite
@skip_before_postgres(8, 3)
@skip_before_postgres(8, 4)
def test_composite_array(self):
oid = self._create_type("type_isd",
[('anint', 'integer'), ('astring', 'text'), ('adate', 'date')])