summaryrefslogtreecommitdiff
path: root/test/dialect/test_postgresql.py
diff options
context:
space:
mode:
authorMichael Trier <mtrier@gmail.com>2010-02-23 00:27:37 +0000
committerMichael Trier <mtrier@gmail.com>2010-02-23 00:27:37 +0000
commit2a1eca4bbc74347a213fb22b628eae1b1762004d (patch)
tree3846f934badd5539f0da497a48552e68008132f8 /test/dialect/test_postgresql.py
parentd050991944fdeb27e7674987622081494ebb6087 (diff)
downloadsqlalchemy-2a1eca4bbc74347a213fb22b628eae1b1762004d.tar.gz
Changed the py-postgresql dialect to indicate that it is using the pyformat parameter style.
Diffstat (limited to 'test/dialect/test_postgresql.py')
-rw-r--r--test/dialect/test_postgresql.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/dialect/test_postgresql.py b/test/dialect/test_postgresql.py
index 2d05939fe..9361f4dbc 100644
--- a/test/dialect/test_postgresql.py
+++ b/test/dialect/test_postgresql.py
@@ -1651,6 +1651,7 @@ class MatchTest(TestBase, AssertsCompiledSQL):
self.assert_compile(matchtable.c.title.match('somstr'), "matchtable.title @@ to_tsquery(%(title_1)s)")
@testing.fails_on('postgresql+psycopg2', 'uses pyformat')
+ @testing.fails_on('postgresql+pypostgresql', 'uses pyformat')
@testing.fails_on('postgresql+zxjdbc', 'uses qmark')
def test_expression_positional(self):
self.assert_compile(matchtable.c.title.match('somstr'), "matchtable.title @@ to_tsquery(%s)")