Mark variable as const to prevent compiler warning
authorTomas Vondra <[email protected]>
Tue, 8 Aug 2017 10:46:55 +0000 (12:46 +0200)
committerTomas Vondra <[email protected]>
Tue, 8 Aug 2017 10:48:35 +0000 (12:48 +0200)
commit0b69492af7186538d831823a6fce3b64616be197
tree18d285688a06f205efe618bb29f69d875fa1745d
parent72889323b51d2aa5af954aa74cf8ec51d057f982
Mark variable as const to prevent compiler warning

The quote_guc_value() result was assigned to regular (char *) variable,
resulting in compiler warning about discarding const qualifier. Fix by
marking the variable as 'const' too.
src/backend/pgxc/pool/pgxcnode.c