Opened 6 years ago
Closed 6 years ago
#29949 closed Cleanup/optimization (fixed)
DB identifier converters cleanup
Description ¶
IMO we can remove introspection.table_name_converter()
and introspection.column_name_converter
(unused after #28584) and use instead a single method introspection.identifier_converter()
. As a part of this cleanup we will remove features.uppercases_column_names
and we'll use introspection.identifier_converter()
in the tests suite.
Change History (6)
comment:1 by , 6 years ago
Summary: | DB identifier converters cleanup. → DB identifier converters cleanup |
---|---|
Triage Stage: | Unreviewed → Accepted |
by , 6 years ago
Attachment: | 29949.diff added |
---|
comment:2 by , 6 years ago
Owner: | changed from | to
---|
comment:4 by , 6 years ago
Triage Stage: | Accepted → Ready for checkin |
---|
Note:
See TracTickets
for help on using tickets.
I'll attach the initial patch that I worked on. A problem I ran into is that sometimes an inverse of
identifier_converter()
was needed for some tests.