You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instead of using types and default opclasses, the EXTERNAL compresison
algorithm now uses regular opclasses and only applies when explicitly
configured.
Users alter or otherwise set the timescaledb.column_codec to a
`column_name:some.compression_opclass`. The opclass, as in the
previous commit, is a virtual namespace with 2 support functions.
(1 and 2, compress and decompress respectively).
CONSTRAINT compression_settings_check_orderby_null CHECK ((orderby IS NULLAND orderby_desc IS NULLAND orderby_nullsfirst IS NULL) OR (orderby IS NOT NULLAND orderby_desc IS NOT NULLAND orderby_nullsfirst IS NOT NULL)),
CONSTRAINT compression_settings_check_codec_null CHECK ((codec_column IS NULLAND codec_opclass IS NULL) OR (codec_column IS NOT NULLAND codec_opclass IS NOT NULL)),
0 commit comments