From: Pavan Deolasee Date: Thu, 11 Aug 2016 04:28:12 +0000 (+0530) Subject: Quote default_transaction_isolation parameter while sending down to the remote X-Git-Tag: XL9_5_R1_3~6 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=73bfca71482f8da0cfebff6bb510c80738cbf22b;p=postgres-xl.git Quote default_transaction_isolation parameter while sending down to the remote nodes Per report by Arun T K --- diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index 19f4abac3f..be9171d371 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -6833,6 +6833,9 @@ set_config_option(const char *name, const char *value, if (value && strcmp("transaction_isolation", name) == 0) value = quote_identifier(value); + if (value && strcmp("default_transaction_isolation", name) == 0) + value = quote_identifier(value); + /* * Quote value if it is including memory or time units */