From 3eb6b375f3b9c6f0c8014da3ca3b49a26331887a Mon Sep 17 00:00:00 2001 From: vivekkoya <67130044+vivekkoya@users.noreply.github.com> Date: Thu, 5 Oct 2023 16:27:40 -0700 Subject: [PATCH 1/2] Update README.md with correct path to postgresql.conf.in file --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3af6958..9ca8ff9 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ The binary distributions have many extensions enabled; these include: - citus You can just use `CREATE EXTENSION` to enable most of these. Some may require -tweaks to [postgresql.conf](./tests/postgresql.conf) to enable. +tweaks to [postgresql.conf](./tests/postgresql.conf.in) to enable. ### Helpful development utilities @@ -121,7 +121,7 @@ major version. This will be expanded in the future. You can test database migrations (using some artificial data schemas); it uses the following data to set up the database: -- [postgresql.conf](./tests/postgresql.conf) +- [postgresql.conf](./tests/postgresql.conf.in) - [prime.sql](./tests/prime.sql) - [data.sql](./tests/migrations/data.sql) From f911422297564434465da67e22356ac9f8a979fa Mon Sep 17 00:00:00 2001 From: vivekkoya <67130044+vivekkoya@users.noreply.github.com> Date: Thu, 5 Oct 2023 16:30:18 -0700 Subject: [PATCH 2/2] Update README.md rename postgresql.conf reference to postgresql.conf.in --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9ca8ff9..2c679bf 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ The binary distributions have many extensions enabled; these include: - citus You can just use `CREATE EXTENSION` to enable most of these. Some may require -tweaks to [postgresql.conf](./tests/postgresql.conf.in) to enable. +tweaks to [postgresql.conf.in](./tests/postgresql.conf.in) to enable. ### Helpful development utilities @@ -121,7 +121,7 @@ major version. This will be expanded in the future. You can test database migrations (using some artificial data schemas); it uses the following data to set up the database: -- [postgresql.conf](./tests/postgresql.conf.in) +- [postgresql.conf.in](./tests/postgresql.conf.in) - [prime.sql](./tests/prime.sql) - [data.sql](./tests/migrations/data.sql)