Changes between Initial Version and Version 1 of Ticket #30649, comment 5


Ignore:
Timestamp:
Jul 18, 2019, 1:21:39 PM (5 years ago)
Author:
Simon Charette

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #30649, comment 5

    initial v1  
    1515e.g.
    1616
    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'`
    2020
    2121This 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.
Back to Top