summaryrefslogtreecommitdiff
path: root/test/dialect/test_postgresql.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-02-13 19:29:38 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2012-02-13 19:29:38 -0500
commitf37aa86df8fa885a5d098930c8a444b96f374f60 (patch)
tree0b488b005536e8b2406e4a6a8b7a6b4ce12860e8 /test/dialect/test_postgresql.py
parent4bbd814fffb563e38f776d7c11ab162f8095ca51 (diff)
downloadsqlalchemy-f37aa86df8fa885a5d098930c8a444b96f374f60.tar.gz
revert this, bad idea
Diffstat (limited to 'test/dialect/test_postgresql.py')
-rw-r--r--test/dialect/test_postgresql.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/dialect/test_postgresql.py b/test/dialect/test_postgresql.py
index a537ee3e9..769f18ce9 100644
--- a/test/dialect/test_postgresql.py
+++ b/test/dialect/test_postgresql.py
@@ -74,18 +74,6 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL):
'RETURNING length(mytable.name) AS length_1'
, dialect=dialect)
- def test_render_literal(self):
- dialect = postgresql.dialect()
- compiler = dialect.statement_compiler(dialect, None)
- for value, exp in [
- ('hi', "'hi'"),
- ("with 'quotes'", "'with ''quotes'''"),
- ('%.%', "'%%.%%'")
- ]:
- eq_(
- compiler.render_literal_value(value, None),
- exp
- )
def test_insert_returning(self):
dialect = postgresql.dialect()