summaryrefslogtreecommitdiff
path: root/test/orm/test_lockmode.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2019-10-02 15:37:24 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2019-10-02 18:03:08 -0400
commitcff9544ab3aba84b65b008e51b79cdf486567d12 (patch)
treeebdac5ee1c566118b5f9682f52fe9db2a6e4cc95 /test/orm/test_lockmode.py
parent70c9bc03395fc372e1451bd1bc47c737bd0a44d4 (diff)
downloadsqlalchemy-cff9544ab3aba84b65b008e51b79cdf486567d12.tar.gz
Change Oracle max_identifier_length to 128
The max_identifier_length for the Oracle dialect is now 128 characters by default, unless compatibility version less than 12.2 upon first connect, in which case the legacy length of 30 characters is used. This is a continuation of the issue as committed to the 1.3 series which adds max identifier length detection upon first connect as well as warns for the change in Oracle server. Fixes: #4857 Change-Id: I5b11edaebb54ec7f0e5456a785105838a1d752e5
Diffstat (limited to 'test/orm/test_lockmode.py')
-rw-r--r--test/orm/test_lockmode.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/orm/test_lockmode.py b/test/orm/test_lockmode.py
index c2b2336b6..bc90c25d8 100644
--- a/test/orm/test_lockmode.py
+++ b/test/orm/test_lockmode.py
@@ -338,7 +338,7 @@ class CompileTest(_fixtures.FixtureTest, AssertsCompiledSQL):
"anon_1.users_name AS anon_1_users_name, "
"addresses_1.id AS addresses_1_id, "
"addresses_1.user_id AS addresses_1_user_id, "
- "addresses_1.email_address AS addresses_1_email_addres_1 "
+ "addresses_1.email_address AS addresses_1_email_address "
"FROM (SELECT anon_2.users_id AS users_id, "
"anon_2.users_name AS users_name FROM "
"(SELECT users.id AS users_id, users.name AS users_name "