From cff9544ab3aba84b65b008e51b79cdf486567d12 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 2 Oct 2019 15:37:24 -0400 Subject: 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 --- lib/sqlalchemy/testing/warnings.py | 7 ------- 1 file changed, 7 deletions(-) (limited to 'lib/sqlalchemy/testing/warnings.py') diff --git a/lib/sqlalchemy/testing/warnings.py b/lib/sqlalchemy/testing/warnings.py index 7fdcec279..829f85586 100644 --- a/lib/sqlalchemy/testing/warnings.py +++ b/lib/sqlalchemy/testing/warnings.py @@ -22,13 +22,6 @@ def setup_filters(): warnings.filterwarnings("error", category=sa_exc.SADeprecationWarning) warnings.filterwarnings("error", category=sa_exc.SAWarning) - warnings.filterwarnings( - "ignore", - category=sa_exc.SAWarning, - message=r"Oracle compatibility version .* is known to have a " - "maximum identifier", - ) - # some selected deprecations... warnings.filterwarnings("error", category=DeprecationWarning) warnings.filterwarnings( -- cgit v1.2.1