Changes between Initial Version and Version 1 of Ticket #30649, comment 5
- Timestamp:
- Jul 18, 2019, 1:21:39 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #30649, comment 5
initial v1 15 15 e.g. 16 16 17 - `Expression.from_db()` 18 - `MakeValid(invalid_geometry).from_db('other')` 19 - `Unaccent(Lower('ÉtÉ')).from_db()` 17 - `Expression.from_db()` -> `SELECT expression` -> what's returned from the database. 18 - `MakeValid(invalid_geometry).from_db('other')` -> `SELECT ST_MakeValid(<Geometry>)` -> `<Valid Geometry>` 19 - `Unaccent(Lower('ÉtÉ')).from_db()` -> `SELECT unaccent(lower('ÉtÉ'))` -> `'ete'` 20 20 21 21 This would have to be discussed on the developer mailing list and I wouldn't be surprised if there was existing tickets tracking this feature request.