summaryrefslogtreecommitdiff
path: root/test/dialect/postgres.py
diff options
context:
space:
mode:
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})