diff options
author | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2018-05-14 03:11:11 +0100 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2018-05-18 12:16:43 +0100 |
commit | dd7e5c906fc37c50852619d68d6a347ab5928371 (patch) | |
tree | 591b357fe9acac40405e8df39dc8b786e0101bd6 | |
parent | eb570488a40ce67fb1df3ed548bda1c57d585084 (diff) | |
download | psycopg2-fix-211.tar.gz |
Skipped test on db version not supporting unicode identifiersfix-211
-rwxr-xr-x | tests/test_extras_dictcursor.py | 1 |
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') |