String column encoding support was added for
TEXT-type columns. See Encoding String Columns. (WL #14430)UNIONandUNION ALLsupport was extended. The clauses are now supported at any location in a query that is permitted by MySQL. (WL #14455)-
The following temporal functions are now supported:
See Temporal Functions.
The following temporal functions are now supported with
VARLEN-encoded columns:See Temporal Functions.
The following string functions are now supported with
VARLEN-encoded columns:See String Functions and Operators.
SET timezone =with thetimezonetimezonevalue specified as an offset from UTC in the form of[H]H:MMand prefixed with a+or-is now supported with theUNIX_TIMESTAMP()andFROM_UNIXTIME()functions. (WL #14345) -
Offset is now supported with the
LIMITclause:SELECT * FROM tbl LIMIT offset,row_count;The PostgreSQL syntax is also supported:
SELECT * FROM tbl LIMIT row_count OFFSET offset;(WL #14341)
-
New Performance Schema tables provide access to query and execution statistics:
performance_schema.rpd_exec_statsperformance_schema.rpd_query_stats
Changes to MySQL HeatWave Performance Schema tables:
An
NDV(Number of Distinct Values) column was added to theperformance_schema.rpd_columnstable.A
ROWScolumn that shows the total number of rows in a table was added to theperformance_schema.rpd_tablestable.A
MEMORY_USAGEcolumn that shows node memory usage was added to theperformance_schema.rpd_columnstable.The
performance_schema.rpd_nodesDRAMcolumn was renamed toMEMORY_TOTAL. TheMEMORY_TOTALcolumn shows the total memory allocated to a MySQL HeatWave node.
See MySQL HeatWave Performance Schema Tables. (WL #14386)