Comparison of different temporal type values is now supported. For example, a query that compares
DATE
values toTIMESTAMP
values can now be offloaded to HeatWave. (Bug #32420986)-
Range operators on
VARLEN
-encoded string columns are now supported. For example, the following query, whereL_LINESTATUS
is aVARLEN
-encoded string column, can now be offloaded to HeatWave:SELECT COUNT(*) FROM lineitem WHERE L_LINESTATUS >= 1 and L_LINESTATUS <= 10;
(Bug #31721399)
HeatWave now supports
INSERT ... SELECT
statements where theSELECT
query is offloaded to HeatWave and the result set is inserted into a table on the MySQL Database Service instance. This feature improvesINSERT ... SELECT
performance in cases where theSELECT
portion of the statement is a long running, complex query. For more information, see INSERT ... SELECT Statements. (WL #14299)VARLEN
-encoded columns are now supported as data placement keys. For information about the data placement feature, see Defining Data Placement Keys. (WL #14491)Failure handling was improved for queries involving unsupported internal data types. Such queries now exit with an error indicating that the internal data type of the query is not supported. (WL #14483)