visch
09/27/2023, 5:02 PMdatabasename
from database taps. Question from @burton_dewildevisch
09/27/2023, 5:03 PMvisch
09/27/2023, 5:06 PMdefault_target_schema
to None
# 1) When default_target_scheme is in the configuration use it
# 2) if the streams are in <schema>-<table> format use the
# stream <schema>
# 3) Return None if you don't find anything
if default_target_schema:
return default_target_schema
Is the rule right now 🤷
I don't know much about this convention I should probably dive into it moreburton_dewilde
09/27/2023, 5:39 PM