You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now we can pass TIPG_EXCLUDES or TIPG_INCLUDES configs as List (e.g TIPG_INCLUDES='["public.table1"]'). This is nice but when you have to filter in/out a lot of table (which you may not know the name in advance) it's not great.
I'm proposing we add excludes_expr: str and includes_expr: str (e.g TIPG_EXCLUDES_EXPR="^pgstac\._item") settings in addition to excludes and includes lists
The text was updated successfully, but these errors were encountered:
Right now we can pass
TIPG_EXCLUDES
orTIPG_INCLUDES
configs as List (e.gTIPG_INCLUDES='["public.table1"]'
). This is nice but when you have to filter in/out a lot of table (which you may not know the name in advance) it's not great.tipg/tipg/settings.py
Lines 32 to 33 in 0c0f512
I'm proposing we add
excludes_expr: str
andincludes_expr: str
(e.gTIPG_EXCLUDES_EXPR="^pgstac\._item"
) settings in addition to excludes and includes listsThe text was updated successfully, but these errors were encountered: