43
47
self.failUnlessEqual(self.getCurrentIsolation(), 'read committed')
49
49
def test_autocommit(self):
51
51
# There is no actual 'autocommit' mode in PostgreSQL. psycopg
52
52
# implements this feature by using read committed isolation and
53
53
# issuing commit() statements after every query.