Disable fsync in arbitrary config tests (#5800)

We have fsync enabled for regular tests already in `pg_regress_multi.pl`.
This does the same for the arbitrary config tests.

On my machine this changes the runtime from the following command from
~37 to ~25 seconds:

```bash
make -C src/test/regress/ check-arbitrary-configs CONFIGS=CitusDefaultClusterConfig
```
pull/5738/head
Jelte Fennema 2022-03-14 16:12:38 +01:00 committed by GitHub
parent 5d07273ca6
commit 5063257252
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -103,6 +103,7 @@ class CitusBaseClusterConfig(object, metaclass=NewInitCaller):
self.settings = { self.settings = {
"shared_preload_libraries": "citus", "shared_preload_libraries": "citus",
"log_error_verbosity": "terse", "log_error_verbosity": "terse",
"fsync": False,
"citus.node_conninfo": "sslmode=prefer", "citus.node_conninfo": "sslmode=prefer",
"citus.enable_repartition_joins": True, "citus.enable_repartition_joins": True,
"citus.repartition_join_bucket_count_per_node": 2, "citus.repartition_join_bucket_count_per_node": 2,