django/django

View on GitHub
django/db/backends/oracle/operations.py

Summary

Maintainability
D
1 day
Test Coverage

File operations.py has 607 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import datetime
import uuid
from functools import lru_cache

from django.conf import settings
Severity: Major
Found in django/db/backends/oracle/operations.py - About 1 day to fix

    Function date_extract_sql has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

        def date_extract_sql(self, lookup_type, sql, params):
            extract_sql = f"TO_CHAR({sql}, %s)"
            extract_param = None
            if lookup_type == "week_day":
                # TO_CHAR(field, 'D') returns an integer from 1-7, where 1=Sunday.
    Severity: Minor
    Found in django/db/backends/oracle/operations.py - About 45 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function sql_flush has 6 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        def sql_flush(self, style, tables, *, reset_sequences=False, allow_cascade=False):
    Severity: Minor
    Found in django/db/backends/oracle/operations.py - About 45 mins to fix

      Function date_trunc_sql has 5 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          def date_trunc_sql(self, lookup_type, sql, params, tzname=None):
      Severity: Minor
      Found in django/db/backends/oracle/operations.py - About 35 mins to fix

        Function datetime_trunc_sql has 5 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            def datetime_trunc_sql(self, lookup_type, sql, params, tzname):
        Severity: Minor
        Found in django/db/backends/oracle/operations.py - About 35 mins to fix

          Function datetime_extract_sql has 5 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              def datetime_extract_sql(self, lookup_type, sql, params, tzname):
          Severity: Minor
          Found in django/db/backends/oracle/operations.py - About 35 mins to fix

            Function time_trunc_sql has 5 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                def time_trunc_sql(self, lookup_type, sql, params, tzname=None):
            Severity: Minor
            Found in django/db/backends/oracle/operations.py - About 35 mins to fix

              There are no issues that match your filters.

              Category
              Status