-
- Downloads
offset is a reserved word in mariadb as of 10.6 (#17101)
* offset is a reserved word in mariadb as of 10.6 - https://mariadb.com/kb/en/reserved-words/ - https://github.com/MariaDB/server/commit/299b935320 I think it is related to https://jira.mariadb.org/browse/MDEV-23908 "Implement SELECT ... OFFSET ... FETCH ..." * Handle new names for utf8 in mariadb https://mariadb.com/kb/en/unicode/ - utf8: Until MariaDB 10.5, this was a UTF-8 encoding using one to three bytes per character. Basic Latin letters, numbers and punctuation use one byte. European and Middle East letters mostly fit into 2 bytes. Korean, Chinese, and Japanese ideographs use 3-bytes. No supplementary characters are stored. From MariaDB 10.6, utf8 is an alias for utf8mb3, but this can changed to ut8mb4 by changing the default value of the old_mode system variable. - utf8mb3: UTF-8 encoding using one to three bytes per character. Basic Latin letters, numbers and punctuation use one byte. European and Middle East letters mostly fit into 2 bytes. Korean, Chinese, and Japanese ideographs use 3-bytes. No supplementary characters are stored. Until MariaDB 10.5, this was an alias for utf8. From MariaDB 10.6, utf8 is by default an alias for utf8mb3, but this can changed to ut8mb4 by changing the default value of the old_mode system variable.
Please register or sign in to comment