What do we think about <https://github.com/meltano...
# singer-target-development
v
What do we think about https://github.com/meltano/sdk/blob/main/singer_sdk/sinks/sql.py#L73-L81 from the office hours conversation today regarding removing the
databasename
from database taps. Question from @burton_dewilde
If we didn't do this we could bypass this need https://github.com/MeltanoLabs/target-postgres/issues/163
@burton_dewilde Another thing to give a try is turning
default_target_schema
to
None
Copy code
# 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 more
b
thanks for investigating this, derek! and nice chatting with you today. will definitely be exploring my options -- sounds like i need to dig in a bit deeper, and probably get more familiar with the broader meltano sdk