diff --git a/api/src/main/java/org/teiid/translator/SourceSystemFunctions.java b/api/src/main/java/org/teiid/translator/SourceSystemFunctions.java index 3239119b3f..749aea32d7 100644 --- a/api/src/main/java/org/teiid/translator/SourceSystemFunctions.java +++ b/api/src/main/java/org/teiid/translator/SourceSystemFunctions.java @@ -191,6 +191,7 @@ public class SourceSystemFunctions { public static final String ST_EQUALS = "st_equals"; //$NON-NLS-1$ public static final String ST_TRANSFORM = "st_transform"; //$NON-NLS-1$ public static final String ST_SIMPLIFY = "st_simplify"; //$NON-NLS-1$ + public static final String ST_SIMPLIFYPRESERVETOPOLOGY = "st_simplifypreservetopology"; //$NON-NLS-1$ public static final String ST_FORCE_2D = "st_force_2d"; //$NON-NLS-1$ public static final String ST_ENVELOPE = "st_envelope"; //$NON-NLS-1$ public static final String ST_WITHIN = "st_within"; //$NON-NLS-1$ @@ -237,5 +238,7 @@ public class SourceSystemFunctions { public static final String ST_X = "st_x"; //$NON-NLS-1$ public static final String ST_Y = "st_y"; //$NON-NLS-1$ public static final String ST_Z = "st_z"; //$NON-NLS-1$ + public static final String ST_MAKEENVELOPE = "st_makeenvelope"; //$NON-NLS-1$ + public static final String ST_SNAPTOGRID = "st_snaptogrid"; //$NON-NLS-1$ } diff --git a/build/kits/jboss-as7/overlay/docs/teiid/teiid-releasenotes.html b/build/kits/jboss-as7/overlay/docs/teiid/teiid-releasenotes.html index 678f3dbfdd..e593d357a3 100644 --- a/build/kits/jboss-as7/overlay/docs/teiid/teiid-releasenotes.html +++ b/build/kits/jboss-as7/overlay/docs/teiid/teiid-releasenotes.html @@ -216,8 +216,13 @@

Compatibility Issues

TEIID-4205 By default, the wrapping begin/commit of a UseDeclareFetch cursor will be ignored as Teiid does not require a transaction. Set the org.teiid.honorDeclareFetchTxn system property to false to revert to the old behavior which honored the transaction.

+
  • +

    TEIID-4866 For usability +with SQLAlchemy and Superset the version() function over ODBC will report ""PostgreSQL 8.2" rather than "Teiid version". +You can use the system property org.teiid.pgVersion to control this further.

    +

    from ${project.version}