mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-22 17:06:33 +03:00
Fixed tests to run with PG 8.3
This commit is contained in:
parent
64674787fd
commit
bc400f6961
|
@ -433,7 +433,7 @@ class HstoreTestCase(unittest.TestCase):
|
|||
try:
|
||||
register_hstore(conn)
|
||||
curs = conn.cursor()
|
||||
curs.execute("select ''::hstore x")
|
||||
curs.execute("select ''::hstore as x")
|
||||
self.assertEqual(curs.fetchone()['x'], {})
|
||||
finally:
|
||||
conn.close()
|
||||
|
@ -442,7 +442,7 @@ class HstoreTestCase(unittest.TestCase):
|
|||
try:
|
||||
curs = conn.cursor()
|
||||
register_hstore(curs)
|
||||
curs.execute("select ''::hstore x")
|
||||
curs.execute("select ''::hstore as x")
|
||||
self.assertEqual(curs.fetchone()['x'], {})
|
||||
finally:
|
||||
conn.close()
|
||||
|
@ -746,7 +746,7 @@ class AdaptTypeTestCase(unittest.TestCase):
|
|||
try:
|
||||
register_composite('type_ii', conn)
|
||||
curs = conn.cursor()
|
||||
curs.execute("select '(1,2)'::type_ii x")
|
||||
curs.execute("select '(1,2)'::type_ii as x")
|
||||
self.assertEqual(curs.fetchone()['x'], (1,2))
|
||||
finally:
|
||||
conn.close()
|
||||
|
@ -755,7 +755,7 @@ class AdaptTypeTestCase(unittest.TestCase):
|
|||
try:
|
||||
curs = conn.cursor()
|
||||
register_composite('type_ii', conn)
|
||||
curs.execute("select '(1,2)'::type_ii x")
|
||||
curs.execute("select '(1,2)'::type_ii as x")
|
||||
self.assertEqual(curs.fetchone()['x'], (1,2))
|
||||
finally:
|
||||
conn.close()
|
||||
|
|
Loading…
Reference in New Issue
Block a user