2020-10-30 00:56:48 -04:00
|
|
|
DO
|
|
|
|
$$
|
|
|
|
DECLARE
|
|
|
|
clist text;
|
|
|
|
|
|
|
|
BEGIN
|
|
|
|
-------------------------------build a column list----------------------------------------
|
2020-10-28 00:03:13 -04:00
|
|
|
SELECT
|
2020-10-30 00:56:48 -04:00
|
|
|
string_agg(format('%I',cname),E'\n,' ORDER BY opos ASC)
|
|
|
|
INTO
|
|
|
|
clist
|
2020-10-28 00:03:13 -04:00
|
|
|
FROM
|
|
|
|
fc.target_meta
|
|
|
|
WHERE
|
2020-10-30 00:56:48 -04:00
|
|
|
func NOT IN ('version');
|
|
|
|
|
|
|
|
RAISE NOTICE 'build list: %',clist;
|
|
|
|
|
|
|
|
END
|
|
|
|
$$
|