age icon indicating copy to clipboard operation
age copied to clipboard

Remove OIDS from `ag_label`

Open emotionbug opened this issue 2 years ago • 1 comments

Although OIDS is defined, the only part that is actually used is the logic of determining the existence of the label. However, this is eliminated because it can be implemented with other fields such as label_id.

In the case of upgrading this, OIDS may be removed using 'ALTER TABLE ag_label SET WITHOUT OIDS'.

related : https://github.com/apache/incubator-age/issues/20

DROP index ag_label_oid_index;
ALTER TABLE ag_label SET WITHOUT OIDS;

emotionbug avatar Mar 08 '22 03:03 emotionbug

@jrgemignani Rebased with master.

emotionbug avatar Apr 12 '22 01:04 emotionbug