WL#8543: Mutator ST_SRID

Affects: Server-8.0   —   Status: Complete

Add a mutator ST_SRID function that changes the SRID of a geometric
object without changing/transforming the contents, according to
ISO/IEC 13249-3:2011 Sect. 5.1.5.

This function is especially valuable when we introduce geography
support and users want to tell which SRS their data is in:

UPDATE t1 SET geometry_column=ST_SRID(geometry_column, 4326);

PostGIS has implemented this with a non-standard name:
http://postgis.net/docs/ST_SetSRID.html

MySQL already has an ST_SRID observer function.