summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>2018-05-14 03:11:11 +0100
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>2018-05-18 12:16:43 +0100
commitdd7e5c906fc37c50852619d68d6a347ab5928371 (patch)
tree591b357fe9acac40405e8df39dc8b786e0101bd6
parenteb570488a40ce67fb1df3ed548bda1c57d585084 (diff)
downloadpsycopg2-dd7e5c906fc37c50852619d68d6a347ab5928371.tar.gz
Skipped test on db version not supporting unicode identifiersfix-211
-rwxr-xr-xtests/test_extras_dictcursor.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_extras_dictcursor.py b/tests/test_extras_dictcursor.py
index 2a46fba..d43980a 100755
--- a/tests/test_extras_dictcursor.py
+++ b/tests/test_extras_dictcursor.py
@@ -358,6 +358,7 @@ class NamedTupleCursorTest(ConnectingTestCase):
self.assertEqual(rv.f3, 3)
@skip_before_python(3)
+ @skip_before_postgres(8)
def test_nonascii_name(self):
curs = self.conn.cursor()
curs.execute('select 1 as \xe5h\xe9')