initial work on column builder, driven by shell

This commit is contained in:
Paul Trowbridge 2020-10-28 00:03:13 -04:00
parent 1bc21d9940
commit 270eb46123
2 changed files with 7 additions and 0 deletions

1
runsql.sh Executable file
View File

@ -0,0 +1 @@
$PGD -f sql/col_list.sql -t -A -o coldump

6
sql/col_list.sql Normal file
View File

@ -0,0 +1,6 @@
SELECT
string_agg(format('%I',cname),E'\n,' ORDER BY opos ASC) cols
FROM
fc.target_meta
WHERE
func NOT IN ('version','iter');