diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2016-12-19 12:13:31 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-12-19 08:29:42 -0500 |
| commit | 3e43d24ad36d45cace57e6a7efd34638577ae744 (patch) | |
| tree | 2dd66bcbcb0d8f2193e73b332b15ddf1c4b3b2c2 /tests | |
| parent | e2112a5e1af001449f0d1c183261369f00e93195 (diff) | |
Refs #19884 -- Added CharField max_length introspection on Oracle.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/inspectdb/tests.py | 1 | ||||
| -rw-r--r-- | tests/introspection/tests.py | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/tests/inspectdb/tests.py b/tests/inspectdb/tests.py index d1ca549fb0..3f09b72986 100644 --- a/tests/inspectdb/tests.py +++ b/tests/inspectdb/tests.py @@ -58,7 +58,6 @@ class InspectDBTestCase(TestCase): assertFieldType = self.make_field_type_asserter() # Inspecting Oracle DB doesn't produce correct results (#19884): - # - it gets max_length wrong: it returns a number of bytes. # - it reports fields as blank=True when they aren't. if (connection.features.can_introspect_max_length and not connection.features.interprets_empty_strings_as_nulls): diff --git a/tests/introspection/tests.py b/tests/introspection/tests.py index 369b9b1586..a8ce01b2b2 100644 --- a/tests/introspection/tests.py +++ b/tests/introspection/tests.py @@ -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: |
