summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2024-02-27 13:58:05 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2024-02-27 13:58:05 +0200
commit552a8c7ee1ae38ef394ab92aac39808b76805b45 (patch)
tree629e3da6808b182ace02ed7ab79f35f688220171
parent1ac51c10f3e0f33b7fa6058a401142e5ea208c28 (diff)
Improve odb-tests configuration variables description
-rw-r--r--odb-tests/build/root.build13
1 files changed, 10 insertions, 3 deletions
diff --git a/odb-tests/build/root.build b/odb-tests/build/root.build
index 75386bf..071a97f 100644
--- a/odb-tests/build/root.build
+++ b/odb-tests/build/root.build
@@ -96,15 +96,22 @@ config [string] config.odb_tests.pgsql.user ?= 'odb_test'
#
config [string] config.odb_tests.pgsql.database ?= 'odb_test'
-# The database host. Leaving this variable undefined results in using
-# Unix-domain sockets. Machines without Unix-domain sockets will connect to
-# localhost.
+# The database host or directory of Unix-domain socket. Leaving this variable
+# undefined results in using Unix-domain sockets. Machines without Unix-domain
+# sockets will connect to localhost.
#
config [string] config.odb_tests.pgsql.host
# The database port or the socket file name extension for Unix-domain
# connections.
#
+# For example, specifying:
+#
+# config.odb_tests.pgsql.host=/var/run/postgresql
+# config.odb_tests.pgsql.port=5433
+#
+# Will result in the /var/run/postgresql/.s.PGSQL.5433 socket being used.
+#
config [string] config.odb_tests.pgsql.port
# If true, then assume that libodb-pgsql supports the bulk operations.