From: Itagaki Takahiro Date: Thu, 25 Nov 2010 10:40:58 +0000 (+0900) Subject: Don't raise "identifier will be truncated" messages in dblink X-Git-Tag: REL9_0_2~14 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=317a568c88ee92bb50238f9fe9508803bc81501c;p=postgresql Don't raise "identifier will be truncated" messages in dblink except creating new connections. --- diff --git a/contrib/dblink/dblink.c b/contrib/dblink/dblink.c index 4bfa7670fd..09eea1881a 100644 --- a/contrib/dblink/dblink.c +++ b/contrib/dblink/dblink.c @@ -2109,7 +2109,7 @@ getConnectionByName(const char *name) remoteConnHash = createConnHash(); key = pstrdup(name); - truncate_identifier(key, strlen(key), true); + truncate_identifier(key, strlen(key), false); hentry = (remoteConnHashEnt *) hash_search(remoteConnHash, key, HASH_FIND, NULL); @@ -2170,7 +2170,7 @@ deleteConnection(const char *name) remoteConnHash = createConnHash(); key = pstrdup(name); - truncate_identifier(key, strlen(key), true); + truncate_identifier(key, strlen(key), false); hentry = (remoteConnHashEnt *) hash_search(remoteConnHash, key, HASH_REMOVE, &found);