mirror of https://github.com/citusdata/citus.git
Change comment regarding functions returning composite
Relevant PG commit: c2fa113ddb1117b1f03e91960f65d5d7d8a90270boolean_node
parent
d7572ab58d
commit
e5550fe990
|
@ -4037,9 +4037,9 @@ get_variable(Var *var, int levelsup, bool istoplevel, deparse_context *context)
|
||||||
/*
|
/*
|
||||||
* If we find a Var referencing a dropped column, it seems better to
|
* If we find a Var referencing a dropped column, it seems better to
|
||||||
* print something (anything) than to fail. In general this should
|
* print something (anything) than to fail. In general this should
|
||||||
* not happen, but there are specific cases involving functions
|
* not happen, but it used to be possible for some cases involving
|
||||||
* returning named composite types where we don't sufficiently enforce
|
* functions returning named composite types, and perhaps there are
|
||||||
* that you can't drop a column that's referenced in some view.
|
* still bugs out there.
|
||||||
*/
|
*/
|
||||||
if (attname == NULL)
|
if (attname == NULL)
|
||||||
attname = "?dropped?column?";
|
attname = "?dropped?column?";
|
||||||
|
|
Loading…
Reference in New Issue