-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Redshift: use zstd compression encoding instead text255 with the colu…
…mns for enum fields (#215) Currently, we make the compression encoding of the columns for enum fields text255. However, text255 doesn't allow to alter the column therefore we get exception while trying to resize the column. In order to solve this problem, we decided to use zstd compression encoding with enum fields as well. Encoding of the newly created columns for enum fields will be zstd after this change however compression encoding of the existing columns won't be updated after this change and we will continue to get exception when those columns are tried to be resized. Those exception will be caught and ignored in RDB Loader.
- Loading branch information
Showing
2 changed files
with
5 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters