Mike Gouline
Mike Gouline
Should be resolved in [0.37.0](https://github.com/Snowflake-Labs/terraform-provider-snowflake/releases/tag/v0.37.0)
It _is_ supported, you have to use escaped middle quotes as discussed in #1090 and illustrated in the `from_replica` example in [snowflake_database](https://registry.terraform.io/providers/Snowflake-Labs/snowflake/latest/docs/resources/database). ``` resource "snowflake_database" "database" { name = "DATABASE_NAME"...
> It does work - just look a bit awkward... I agree, but it's consistent with `from_replica` and that's the preference of the maintainers. > Also as a side remark...
Agreed on documentation, I had to look at the code to figure it out. @marcin-vt also raised a bug here that comment isn't getting included in the create statement (only...
There's no active development happening on this project. You (or anyone reading this issue) are welcome to implement it and I will happily review it and release a new version.
Explicitly setting `type/FK` is not supported, because there's no way to specify the target table. You can only set the relationship test and then it will implicitly apply `type/FK` with...
@heberaguilar Unfortunately, not currently. It has the same `to` and `field` fields though, so you could easily implement it [here](https://github.com/gouline/dbt-metabase/blob/master/dbtmetabase/parsers/dbt_folder.py#L198) for the folder parser and [here](https://github.com/gouline/dbt-metabase/blob/master/dbtmetabase/parsers/dbt_manifest.py#L205) for the manifest parser....
Definitely not planned and probably a little too far in my opinion - the purpose of dbt-metabase is not to be a fully-featured infrastructure as code tool for Metabase shoehorned...
No current plans to implement this, closing for now. If anyone is interested in contributing an implementation after 1.0 is released, we can re-open and continue the discussion.
Since there's no way to distinguish databases with identical names in the Metabase UI, this seems like a rare hacky use case. I'll wait to see if anyone else upvotes...