summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2015-05-05 17:01:13 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2015-05-05 17:01:13 -0400
commit5c852409219e18fb3d3b1403bfc872b3fe99f802 (patch)
treec3aaa0e1322df7b7229b10cc864075942ac0813b
parentbe81cb200d9efb45c3bf331315c54dff778b5de6 (diff)
downloadsqlalchemy-5c852409219e18fb3d3b1403bfc872b3fe99f802.tar.gz
- appease oracle's anger (no sequence defined for these PKs)
-rw-r--r--test/orm/test_eager_relations.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/orm/test_eager_relations.py b/test/orm/test_eager_relations.py
index 1156fc1bf..6d9d9ec4b 100644
--- a/test/orm/test_eager_relations.py
+++ b/test/orm/test_eager_relations.py
@@ -2376,6 +2376,7 @@ class InnerJoinSplicingWSecondaryTest(
A(
id=1,
b=B(
+ id=1,
c=C(
id=1,
ds=[d1, d2]
@@ -2385,6 +2386,7 @@ class InnerJoinSplicingWSecondaryTest(
A(
id=2,
b=B(
+ id=2,
c=C(
id=2,
ds=[d2, d3]