File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ create_part_relations_hashtable()
103
103
hash_destroy (relations );
104
104
105
105
relations = ShmemInitHash ("Partitioning relation info" ,
106
- 32 , 32 ,
106
+ 1024 , 1024 ,
107
107
& ctl , HASH_ELEM );
108
108
// &ctl, HASH_ELEM | HASH_BLOBS);
109
109
}
@@ -188,7 +188,7 @@ create_hash_restrictions_hashtable()
188
188
hash_destroy (hash_restrictions );
189
189
190
190
hash_restrictions = ShmemInitHash ("pg_pathman hash restrictions" ,
191
- 128 , 128 ,
191
+ 1024 , 1024 ,
192
192
& ctl , HASH_ELEM | HASH_BLOBS );
193
193
}
194
194
@@ -321,7 +321,7 @@ create_range_restrictions_hashtable()
321
321
ctl .keysize = sizeof (int );
322
322
ctl .entrysize = sizeof (RangeRelation );
323
323
range_restrictions = ShmemInitHash ("pg_pathman range restrictions" ,
324
- 512 , 512 ,
324
+ 1024 , 1024 ,
325
325
& ctl , HASH_ELEM | HASH_BLOBS );
326
326
}
327
327
Original file line number Diff line number Diff line change 14
14
#define OP_STRATEGY_GE 4
15
15
#define OP_STRATEGY_GT 5
16
16
17
- #define BLOCKS_COUNT 1024
17
+ #define BLOCKS_COUNT 10240
18
18
19
19
/*
20
20
* Partitioning type
You can’t perform that action at this time.
0 commit comments