[Compressed columns with dictionaries] 5.7 supports JSON column compression
Bug #1662059 reported by
Laurynas Biveinis
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | ||
---|---|---|---|---|---|---|
Percona Server moved to https://jira.percona.com/projects/PS | Status tracked in 5.7 | |||||
5.5 |
Invalid
|
Undecided
|
Unassigned | |||
5.6 |
Invalid
|
Undecided
|
Unassigned | |||
5.7 |
Triaged
|
High
|
Borys Belinsky |
Bug Description
[In:/doc/
In 5.7, JSON is one of the supported data types for compressed columns with dictionaries, this must be stated.
tags: | added: column-compression |
To post a comment you must log in.
Please, also add that 5.7 generated columns (both virtual and stored) can refer to compressed columns.
Moreover, we added syntax extension for stored generated columns, which allows to specify COLUMN_FORMAT COMPRESSED for them.
For instance,
CREATE TABLE t1( DICTIONARY numbers
id INT,
a BLOB,
g BLOB GENERATED ALWAYS AS (a) STORED COLUMN_FORMAT COMPRESSED WITH COMPRESSION_
) ENGINE=InnoDB;