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
Show deprecation warning when using hypercore access method
The hypercore access method is being deprecated and will be removed
in a future release. This patch adds a warning when enabling the
access method.
Co-authored-by: Philip Krauss <[email protected]>
Signed-off-by: Sven Klemm <[email protected]>
alter table copy_test1 set access method hypercore;
198
+
WARNING: the hypercore access method is marked as deprecated with the 2.21.0 release and will be fully removed in the 2.22.0 release.
198
199
WARNING: there was some uncertainty picking the default segment by for the hypertable: You do not have any indexes on columns that can be used for segment_by and thus we are not using segment_by for converting to columnstore. Please make sure you are not missing any indexes
199
200
NOTICE: default segment by for hypertable "copy_test1" is set to ""
200
201
NOTICE: default order by for hypertable "copy_test1" is set to "created_at DESC"
@@ -252,6 +253,7 @@ select * from amrels where relparent = 'test1'::regclass;
252
253
(1 row)
253
254
254
255
alter table test1 set access method hypercore;
256
+
WARNING: the hypercore access method is marked as deprecated with the 2.21.0 release and will be fully removed in the 2.22.0 release.
WARNING: the hypercore access method is marked as deprecated with the 2.21.0 release and will be fully removed in the 2.22.0 release.
138
139
WARNING: there was some uncertainty picking the default segment by for the hypertable: Please make sure device_id is not a unique column and appropriate for a segment by
139
140
NOTICE: default segment by for hypertable "test2" is set to "device_id"
140
141
NOTICE: default order by for hypertable "test2" is set to "created_at DESC"
0 commit comments