Changes between Initial Version and Version 5 of Ticket #33120
- Timestamp:
- Sep 4, 2026, 9:22:24 AM (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33120
- Property Triage Stage Unreviewed → Accepted
- Property Version 3.2 → dev
- Property Owner removed
- Property Patch needs improvement set
- Property Has patch set
-
Ticket #33120 – Description
initial v5 1 1 MySQL 8 introduced two new tables that allow the implementation of the `SpatialRefSys` and `GeometryColumns` models as well as related functions for adding new SRS entries to the database. Adding these two models and updating related functions to support them would be a good first step to improving GeoDjango's support for MySQL 8. 2 2 3 - Add `MySQLSpatialRefSys` model connecting to the `INFORMATION_SCHEMA.ST_ GEOMETRY_COLUMNS` table (https://dev.mysql.com/doc/refman/8.0/en/information-schema-st-geometry-columns-table.html)3 - Add `MySQLSpatialRefSys` model connecting to the `INFORMATION_SCHEMA.ST_SPATIAL_REFERENCE_SYSTEMS` table (https://dev.mysql.com/doc/refman/8.0/en/information-schema-st-spatial-reference-systems-table.html) 4 4 - Add `MySQLGeometryColumns` model connecting to the `INFORMATION_SCHEMA.ST_GEOMETRY_COLUMNS` table (https://dev.mysql.com/doc/refman/8.0/en/information-schema-st-geometry-columns-table.html) 5 5 - Enable `has_spatialrefsys_table` and `supports_add_srs_entry` backend features if MySQL version is greater than 8.0