[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/pq f743c450ac 09/63: Set application_name.
From: |
ELPA Syncer |
Subject: |
[elpa] externals/pq f743c450ac 09/63: Set application_name. |
Date: |
Mon, 14 Feb 2022 23:24:18 -0500 (EST) |
branch: externals/pq
commit f743c450aceede364268b614f93cdb1b46e41c77
Author: Andreas Seltenreich <andreas+git@ansel.ydns.eu>
Commit: Andreas Seltenreich <andreas+git@ansel.ydns.eu>
Set application_name.
---
pq.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/pq.c b/pq.c
index 94f7d64f1f..40f7158dee 100644
--- a/pq.c
+++ b/pq.c
@@ -77,6 +77,9 @@ Fpq_connectdb (emacs_env *env, int nargs, emacs_value args[],
void *data)
/* The emacs-module interface always expects utf8 strings */
PGresult *res = PQexec(conn, "set client_encoding to utf8");
+ if (!result_ok(env, res))
+ return Qnil;
+ res = PQexec(conn, "set application_name to emacs");
if (!result_ok(env, res))
return Qnil;
- [elpa] branch externals/pq created (now 04c91e8374), ELPA Syncer, 2022/02/14
- [elpa] externals/pq 03c4dbf3f9 04/63: Add pq:getrow., ELPA Syncer, 2022/02/14
- [elpa] externals/pq f743c450ac 09/63: Set application_name.,
ELPA Syncer <=
- [elpa] externals/pq 8cbe2e24fc 36/63: Make test notice-receiver more robust., ELPA Syncer, 2022/02/14
- [elpa] externals/pq 5fcaa751f2 13/63: Cleanup prototype definitions., ELPA Syncer, 2022/02/14
- [elpa] externals/pq d6e3746c80 40/63: Skip encoding test unless supported by server., ELPA Syncer, 2022/02/14
- [elpa] externals/pq 69d6fba048 06/63: Make argument to pq:connectdb optional., ELPA Syncer, 2022/02/14
- [elpa] externals/pq 37e21db4c2 41/63: Shuffle tests, make gc test emit more info on failure., ELPA Syncer, 2022/02/14
- [elpa] externals/pq cdc04b0b61 27/63: Add missing PQclear calls, ELPA Syncer, 2022/02/14
- [elpa] externals/pq 6f6d8728e5 38/63: Test expected error on invalid encoding., ELPA Syncer, 2022/02/14
- [elpa] externals/pq 527e544165 46/63: Improve error handling on connection failure., ELPA Syncer, 2022/02/14
- [elpa] externals/pq 7a15153e8d 58/63: Protect against NULL SQLSTATE., ELPA Syncer, 2022/02/14
- [elpa] externals/pq 966a05ef25 07/63: Initialize client_encoding to utf8., ELPA Syncer, 2022/02/14