psql-conninfo-fix.patch
application/octet-stream
Filename: psql-conninfo-fix.patch
Type: application/octet-stream
Part: 0
Patch
Same data as JSON:
GET /api/v1/attachments/:id/patch
the parsed metadata as JSON — format, series position, per-file stats; never the diff bytes.
API reference →
Format: unified
| File | + | − |
|---|---|---|
| src/bin/psql/command.c | 2 | 2 |
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c
index 53a9b47..eaeb032 100644
--- a/src/bin/psql/command.c
+++ b/src/bin/psql/command.c
@@ -306,8 +306,8 @@ exec_command(const char *cmd,
printf("You are connected to database \"%s\" on host \"%s\" at port \"%s\" as user \"%s\".\n",
db, host, PQport(pset.db), PQuser(pset.db));
else
- printf("You are connected to database \"%s\" via local socket as user \"%s\".\n",
- db, PQuser(pset.db));
+ printf("You are connected to database \"%s\" via local socket at port \"%s\" as user \"%s\".\n",
+ db, PQport(pset.db), PQuser(pset.db));
}
/* \copy */