summaryrefslogtreecommitdiff
path: root/test/sql
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2022-04-07 15:19:10 +0000
committerGerrit Code Review <gerrit@ci3.zzzcomputing.com>2022-04-07 15:19:10 +0000
commit735792d75681e3bc6cdd2d97a903909c6f993b7f (patch)
tree9b060eda44fc2a6025e6951af70e49f614d2890f /test/sql
parent9edcdd03e8cc69e439e89c45c5083edcd28a23af (diff)
parent2acc9ec1281b2818bd44804f040d94ec46215688 (diff)
downloadsqlalchemy-735792d75681e3bc6cdd2d97a903909c6f993b7f.tar.gz
Merge "cx_Oracle modernize" into main
Diffstat (limited to 'test/sql')
-rw-r--r--test/sql/test_insert.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/sql/test_insert.py b/test/sql/test_insert.py
index 74a60bd21..5f02fde4c 100644
--- a/test/sql/test_insert.py
+++ b/test/sql/test_insert.py
@@ -1423,7 +1423,7 @@ class MultirowTest(_InsertTestBase, fixtures.TablesTest, AssertsCompiledSQL):
stmt = table.insert().return_defaults().values(id=func.foobar())
compiled = stmt.compile(dialect=sqlite.dialect(), column_keys=["data"])
eq_(compiled.postfetch, [])
- eq_(compiled.returning, [])
+ eq_(compiled.implicit_returning, [])
self.assert_compile(
stmt,
@@ -1452,7 +1452,7 @@ class MultirowTest(_InsertTestBase, fixtures.TablesTest, AssertsCompiledSQL):
dialect=returning_dialect, column_keys=["data"]
)
eq_(compiled.postfetch, [])
- eq_(compiled.returning, [table.c.id])
+ eq_(compiled.implicit_returning, [table.c.id])
self.assert_compile(
stmt,
@@ -1482,7 +1482,7 @@ class MultirowTest(_InsertTestBase, fixtures.TablesTest, AssertsCompiledSQL):
dialect=returning_dialect, column_keys=["data"]
)
eq_(compiled.postfetch, [])
- eq_(compiled.returning, [table.c.id])
+ eq_(compiled.implicit_returning, [table.c.id])
self.assert_compile(
stmt,