Julien Rouhaud <rjuju...@gmail.com> writes: > I'm attaching the correct patch this time, sorry about that.
While I'm okay with this in principle, as it stands it fails headerscheck/cpluspluscheck: $ src/tools/pginclude/headerscheck In file included from /tmp/headerscheck.Oi8jj3/test.c:2: ./src/include/utils/ruleutils.h:42:35: error: unknown type name 'StringInfo'; did you mean 'String'? void get_query_def(Query *query, StringInfo buf, List *parentnamespace, ^~~~~~~~~~ String ./src/include/utils/ruleutils.h:43:9: error: unknown type name 'TupleDesc' TupleDesc resultDesc, ^~~~~~~~~ We could of course add the necessary #include's to ruleutils.h, but considering that we seem to have been at some pains to minimize its #include footprint, I'm not really happy with that approach. I'm inclined to think that maybe a wrapper function with a slightly simplified interface would be a better way to go. The deparsed string could just be returned as a palloc'd "char *", unless you have some reason to need it to be in a StringInfo. I wonder which of the other parameters really need to be exposed, too. Several of them seem to be more internal to ruleutils.c than something that outside callers would care to manipulate. For instance, since struct deparse_namespace isn't exposed, there really isn't any way to pass anything except NIL for parentnamespace. The bigger picture here is that get_query_def's API has changed over time internally to ruleutils.c, and I kind of expect that that might continue in future, so having a wrapper function with a more stable API could be a good thing. regards, tom lane