only create foreign tables where the foreign key is not a date

This commit is contained in:
Paul Trowbridge 2022-04-28 00:51:21 -04:00
parent a5d9c1d145
commit 9356081662
1 changed files with 2 additions and 3 deletions

View File

@ -27,9 +27,8 @@ BEGIN
FROM
fc.target_meta tm
WHERE
func IS NOT NULL
--if func is populated for a date type, a foreign table will be setup unless excluded here or func not populated
--AND dtype <> 'date'
--only create master tables that don't have date as a foreign key
func IN (SELECT DISTINCT func FROM fc.target_meta WHERE fkey IS NOT NULL AND func IS NOT NULL AND dtype <> 'date')
GROUP BY
schema
,tname