1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-29 10:41:53 +03:00

Don't raise "identifier will be truncated" messages in dblink

except creating new connections.
This commit is contained in:
Itagaki Takahiro
2010-11-25 20:12:20 +09:00
parent 6cb9d51133
commit 0a8ba868a8

View File

@ -2171,7 +2171,7 @@ getConnectionByName(const char *name)
remoteConnHash = createConnHash(); remoteConnHash = createConnHash();
key = pstrdup(name); key = pstrdup(name);
truncate_identifier(key, strlen(key), true); truncate_identifier(key, strlen(key), false);
hentry = (remoteConnHashEnt *) hash_search(remoteConnHash, hentry = (remoteConnHashEnt *) hash_search(remoteConnHash,
key, HASH_FIND, NULL); key, HASH_FIND, NULL);
@ -2232,7 +2232,7 @@ deleteConnection(const char *name)
remoteConnHash = createConnHash(); remoteConnHash = createConnHash();
key = pstrdup(name); key = pstrdup(name);
truncate_identifier(key, strlen(key), true); truncate_identifier(key, strlen(key), false);
hentry = (remoteConnHashEnt *) hash_search(remoteConnHash, hentry = (remoteConnHashEnt *) hash_search(remoteConnHash,
key, HASH_REMOVE, &found); key, HASH_REMOVE, &found);