From: Josh Soref Date: Thu, 2 Feb 2017 10:23:55 +0000 (+0000) Subject: spelling: postgresql X-Git-Tag: rec-4.1.0-alpha1~291^2~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1b8da89a9619e25c227b9cc4051b5b63bb3012e9;p=thirdparty%2Fpdns.git spelling: postgresql --- diff --git a/docs/markdown/changelog.raw.md b/docs/markdown/changelog.raw.md index 90209908f8..a8aa23e9dd 100644 --- a/docs/markdown/changelog.raw.md +++ b/docs/markdown/changelog.raw.md @@ -1271,7 +1271,7 @@ Changes between 3.3.1 and 3.4.0-RC1 follow. - Bundled PolarSSL has been upgraded to 1.3.2 - PolarSSL replaced previously bundled implementations of AES ([commit e22d9b4](https://github.com/PowerDNS/pdns/commit/e22d9b4)) and SHA ([commit 9101035](https://github.com/PowerDNS/pdns/commit/9101035)) - bindbackend is now a module -- [commit 14a2e52](https://github.com/PowerDNS/pdns/commit/14a2e52): Use the inet data type for supermasters.ip on postgrsql. +- [commit 14a2e52](https://github.com/PowerDNS/pdns/commit/14a2e52): Use the inet data type for supermasters.ip on postgresql. - We now send an empty SERVFAIL when a CNAME chain is too long, instead of including the partial chain. - [commit 3613a51](https://github.com/PowerDNS/pdns/commit/3613a51): Show built-in features in --version output - [commit 4bd7d35](https://github.com/PowerDNS/pdns/commit/4bd7d35): make domainmetadata queries case insensitive diff --git a/modules/gpgsqlbackend/spgsql.cc b/modules/gpgsqlbackend/spgsql.cc index 6b63e7d68f..724c4e7056 100644 --- a/modules/gpgsqlbackend/spgsql.cc +++ b/modules/gpgsqlbackend/spgsql.cc @@ -106,7 +106,7 @@ public: // if you return SETOF refcursor. if (PQftype(d_res_set, 0) == 1790) { // REFCURSOR #if PG_VERSION_NUM > 90000 - // PQescapeIdentifier was added to libpq in postggresql 9.0 + // PQescapeIdentifier was added to libpq in postgresql 9.0 char *val = PQgetvalue(d_res_set, d_cur_set++, 0); char *portal = PQescapeIdentifier(d_db(), val, strlen(val)); string cmd = string("FETCH ALL FROM \"") + string(portal) + string("\"");