We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Custom a plugin:
class Plugin(BasePlugin): def initialize(self, plugin_config: Dict[str, Any]): pass def load(self, source_config: SourceConfig) -> pd.DataFrame: pass def store(self, target_config: TargetConfig): pass
how to get meta in method store:
meta
store
models: - name: new_demo meta: custom: test
or to get custom:
custom
-- ./models/new_demo.sql {{ config(materialized="external", plugin="sql", custom="test") }} select * from demo where status=1
The text was updated successfully, but these errors were encountered:
I don't think I'm passing it in right now to the TargetConfig class, but I don't think it wouldn't be too hard to add it, let me take a look now...
TargetConfig
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Custom a plugin:
how to get
meta
in methodstore
:or to get
custom
:The text was updated successfully, but these errors were encountered: