aboutsummaryrefslogtreecommitdiff
path: root/sqitch/deploy/increase_derivation_inputs_statistics_targets.sql
blob: e0da04155580acdacf82171dada73d725f9541ff (plain)
1
2
3
4
5
6
7
8
-- Deploy guix-data-service:increase_derivation_inputs_statistics_targets to pg

BEGIN;

ALTER TABLE derivation_inputs ALTER COLUMN derivation_id SET STATISTICS 10000;
ALTER TABLE derivation_inputs ALTER COLUMN derivation_output_id SET STATISTICS 10000;

COMMIT;