Refs #19884 -- Added CharField max_length introspection on Oracle.

This commit is contained in:
Mariusz Felisiak 2016-12-19 12:13:31 +01:00 committed by Tim Graham
parent e2112a5e1a
commit 3e43d24ad3
4 changed files with 13 additions and 9 deletions

View file

@ -83,8 +83,6 @@ class IntrospectionTests(TransactionTestCase):
'SmallIntegerField' if connection.features.can_introspect_small_integer_field else 'IntegerField']
)
# The following test fails on Oracle due to #17202 (can't correctly
# inspect the length of character columns).
@skipUnlessDBFeature('can_introspect_max_length')
def test_get_table_description_col_lengths(self):
with connection.cursor() as cursor: