On Fri, May 13, 2022 at 3:11 PM wangw.f...@fujitsu.com <wangw.f...@fujitsu.com> wrote: > > Attach the patches.(Only changed the patch for HEAD.). >
# publications -{ oid => '6119', descr => 'get OIDs of tables in a publication', +{ oid => '6119', descr => 'get OIDs of tables in one or more publications', proname => 'pg_get_publication_tables', prorows => '1000', proretset => 't', - provolatile => 's', prorettype => 'oid', proargtypes => 'text', - proallargtypes => '{text,oid}', proargmodes => '{i,o}', + provolatile => 's', prorettype => 'oid', proargtypes => 'any', + proallargtypes => '{any,oid}', proargmodes => '{i,o}', Won't our use case (input one or more publication names) requires the parameter type to be 'VARIADIC text[]' instead of 'any'? I might be missing something here so please let me know your reason to change the type to 'any' from 'text'? -- With Regards, Amit Kapila.