mirror of https://github.com/citusdata/citus.git
Renames shadowing ruleutils_14.c variables
parent
b21a00e775
commit
5930378f61
|
@ -4625,9 +4625,9 @@ get_parameter(Param *param, deparse_context *context)
|
||||||
*/
|
*/
|
||||||
foreach(lc, context->namespaces)
|
foreach(lc, context->namespaces)
|
||||||
{
|
{
|
||||||
deparse_namespace *dpns = lfirst(lc);
|
deparse_namespace *dp_ns = lfirst(lc);
|
||||||
|
|
||||||
if (list_length(dpns->rtable_names) > 0)
|
if (list_length(dp_ns->rtable_names) > 0)
|
||||||
{
|
{
|
||||||
should_qualify = true;
|
should_qualify = true;
|
||||||
break;
|
break;
|
||||||
|
@ -8001,12 +8001,12 @@ pg_get_statisticsobj_worker(Oid statextid, bool columns_only, bool missing_ok)
|
||||||
if (has_exprs)
|
if (has_exprs)
|
||||||
{
|
{
|
||||||
Datum exprsDatum;
|
Datum exprsDatum;
|
||||||
bool isnull;
|
bool isNull;
|
||||||
char *exprsString;
|
char *exprsString;
|
||||||
|
|
||||||
exprsDatum = SysCacheGetAttr(STATEXTOID, statexttup,
|
exprsDatum = SysCacheGetAttr(STATEXTOID, statexttup,
|
||||||
Anum_pg_statistic_ext_stxexprs, &isnull);
|
Anum_pg_statistic_ext_stxexprs, &isNull);
|
||||||
Assert(!isnull);
|
Assert(!isNull);
|
||||||
exprsString = TextDatumGetCString(exprsDatum);
|
exprsString = TextDatumGetCString(exprsDatum);
|
||||||
exprs = (List *) stringToNode(exprsString);
|
exprs = (List *) stringToNode(exprsString);
|
||||||
pfree(exprsString);
|
pfree(exprsString);
|
||||||
|
|
Loading…
Reference in New Issue