mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
Refs #19884 -- Added CharField max_length introspection on Oracle.
This commit is contained in:
parent
e2112a5e1a
commit
3e43d24ad3
4 changed files with 13 additions and 9 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue