Opened 5 years ago

Closed 5 years ago

#29934 closed Cleanup/optimization (fixed)

Add sqlparse as a required dependency

Reported by: Tim Graham Owned by: Tim Graham
Component: Database layer (models, ORM) Version: dev
Severity: Normal Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Requiring sqlparse will simplify a few parts of Django's database handling:

  • It'll remove the need for DatabaseFeatures.requires_sqlparse_for_splitting
  • It'll be used for SQLite constraint introspection (PR)

django-developers discussion

Change History (4)

comment:1 by Tim Graham, 5 years ago

Has patch: set

comment:2 by Tim Graham, 5 years ago

Summary: Add sqlparse as a require dependencyAdd sqlparse as a required dependency

comment:3 by Claude Paroz, 5 years ago

Triage Stage: AcceptedReady for checkin

Thanks!

comment:4 by GitHub <noreply@…>, 5 years ago

Resolution: fixed
Status: assignedclosed

In f82be9eb:

Fixed #29934 -- Added sqlparse as a require dependency.

Note: See TracTickets for help on using tickets.
Back to Top