Page MenuHomeSoftware Heritage

135.sql
No OneTemporary

-- SWH DB schema upgrade
-- from_version: 134
-- to_version: 135
-- description: Add an index on origin.url, drop the index on (origin.type, origin.url)
insert into dbversion(version, release, description)
values(135, now(), 'Work In Progress');
create extension if not exists pg_trgm;
drop index origin_type_url_idx;
create index concurrently on origin using gin (url gin_trgm_ops);
create index concurrently on origin using hash (url);

File Metadata

Mime Type
text/plain
Expires
Jun 4 2025, 7:18 PM (9 w, 6 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3399040

Event Timeline