mirror of https://github.com/citusdata/citus.git
PG commit 376dc820531bafcbf105fff74c5b14c23d9950af
parent
3a773ee18f
commit
af0de8b19a
|
@ -93,7 +93,7 @@ PgGetObjectAddress(char *ttype, ArrayType *namearr, ArrayType *argsarr)
|
||||||
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
|
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
|
||||||
errmsg("name or argument lists may not contain nulls")));
|
errmsg("name or argument lists may not contain nulls")));
|
||||||
}
|
}
|
||||||
typename = typeStringToTypeName(TextDatumGetCString(elems[0]));
|
typename = typeStringToTypeName(TextDatumGetCString(elems[0]), NULL);
|
||||||
}
|
}
|
||||||
else if (type == OBJECT_LARGEOBJECT)
|
else if (type == OBJECT_LARGEOBJECT)
|
||||||
{
|
{
|
||||||
|
@ -160,7 +160,7 @@ PgGetObjectAddress(char *ttype, ArrayType *namearr, ArrayType *argsarr)
|
||||||
errmsg("name or argument lists may not contain nulls")));
|
errmsg("name or argument lists may not contain nulls")));
|
||||||
}
|
}
|
||||||
args = lappend(args,
|
args = lappend(args,
|
||||||
typeStringToTypeName(TextDatumGetCString(elems[i])));
|
typeStringToTypeName(TextDatumGetCString(elems[i]) , NULL));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue