-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from pinknetworkx/develop
Release 1.3.12
- Loading branch information
Showing
21 changed files
with
1,186 additions
and
730 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,8 @@ | ||
|
||
select brin_summarize_new_values('contract_traces_idx_global_sequence'::regclass); | ||
select brin_summarize_new_values('contract_traces_idx_created_at_time'::regclass); | ||
SELECT brin_summarize_new_values('contract_traces_idx_global_sequence'::regclass); | ||
SELECT brin_summarize_new_values('contract_traces_idx_created_at_time'::regclass); | ||
|
||
|
||
ALTER TABLE contract_traces SET (autovacuum_vacuum_scale_factor = 0.0); | ||
ALTER TABLE contract_traces SET (autovacuum_vacuum_threshold = 100000); | ||
ALTER TABLE contract_traces SET (autovacuum_analyze_scale_factor = 0.0); | ||
ALTER TABLE contract_traces SET (autovacuum_analyze_threshold = 1000000); | ||
|
||
alter index contract_traces_idx_global_sequence set (autosummarize = on); | ||
alter index contract_traces_idx_created_at_time set (autosummarize = on); | ||
ALTER INDEX contract_traces_idx_global_sequence set (autosummarize = on); | ||
ALTER INDEX contract_traces_idx_created_at_time set (autosummarize = on); | ||
|
||
UPDATE dbinfo SET "value" = '1.3.11' WHERE name = 'version'; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
SELECT brin_summarize_new_values('atomicassets_mints_idx_asset_id'::regclass); | ||
|
||
ALTER INDEX atomicassets_mints_idx_asset_id set (autosummarize = on); | ||
|
||
ALTER TABLE atomicassets_templates SET (fillfactor = 90); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DROP MATERIALIZED VIEW IF EXISTS atomicmarket_sale_prices; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
UPDATE dbinfo SET "value" = '1.3.12' WHERE name = 'version'; |
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
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
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
Oops, something went wrong.