summaryrefslogtreecommitdiff
path: root/test/dialect/postgres.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2008-11-11 02:04:56 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2008-11-11 02:04:56 +0000
commit61db44d958aedd12f4ff9dbf4a05f5fb7d72b4a8 (patch)
tree1d6cf1b1a971036b8dacbbe2b9f54de48836bb0b /test/dialect/postgres.py
parentda0a8b913bc1336b85618edee0ef63ed96ea1ba0 (diff)
downloadsqlalchemy-61db44d958aedd12f4ff9dbf4a05f5fb7d72b4a8.tar.gz
remove errant pdb.set_trace()
Diffstat (limited to 'test/dialect/postgres.py')
-rw-r--r--test/dialect/postgres.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/dialect/postgres.py b/test/dialect/postgres.py
index 45f9d289a..8298b81f6 100644
--- a/test/dialect/postgres.py
+++ b/test/dialect/postgres.py
@@ -96,11 +96,8 @@ class ReturningTest(TestBase, AssertsExecutionResults):
self.assertEqual(result.fetchall(), [(1,)])
# Multiple inserts only return the last row
- testing.db.echo = True
result2 = table.insert(postgres_returning=[table]).execute(
[{'persons': 2, 'full': False}, {'persons': 3, 'full': True}])
- from pdb import set_trace; set_trace()
- print vars(result2)
self.assertEqual(result2.fetchall(), [(3,3,True)])
result3 = table.insert(postgres_returning=[(table.c.id*2).label('double_id')]).execute({'persons': 4, 'full': False})