Skip to content

Commit

Permalink
Change OORDER and ORDER_LINE fillfactor to 85%
Browse files Browse the repository at this point in the history
This reverts commit 0830c5f, which was an attempt
to workaround the problem described there. The long
term solution needs to be to fix the actual space
allocation in PostgreSQL, rather than wasting 50%
of disk space forever.
  • Loading branch information
wieck committed Jul 28, 2021
1 parent 552cad8 commit 6ac326a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/resources/sql.postgres/extraCommandsBeforeLoad.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ALTER TABLE bmsql_oorder SET (FILLFACTOR = 50);
ALTER TABLE bmsql_order_line SET (FILLFACTOR = 50);
ALTER TABLE bmsql_oorder SET (FILLFACTOR = 85);
ALTER TABLE bmsql_order_line SET (FILLFACTOR = 85);
ALTER TABLE bmsql_warehouse SET (FILLFACTOR = 50);
ALTER TABLE bmsql_district SET (FILLFACTOR = 79);
ALTER TABLE bmsql_customer SET (FILLFACTOR = 90);
Expand Down

0 comments on commit 6ac326a

Please sign in to comment.