Ryan Wood

Results 6 comments of Ryan Wood

Ah, my apologies. I dug into the code a little more and discovered that I hadn't implemented the changes correctly. Essentially, these are supposed to support conversion of a slice...

Has this been completed? I just ran into the issue as well

I've been having this issue as well: ``` config := gosnowflake.Config{ Account: fmt.Sprintf("%s-%s", organization, account), User: username, Password: password, Database: database, Schema: schema, Warehouse: warehouse, } connStr, err := gosnowflake.DSN(&config)...

Not sure if anyone is aware of this, but [pydantic-extra-types](https://github.com/pydantic/pydantic-extra-types) exists so Pydantic already "supports" pendulum.

I found a workaround for this: ```terraform resource "aws_lb_listener" "this" { lifecycle { create_before_destroy = true replace_triggered_by = [ aws_lb_target_group.target_group ] } } ``` This line ensures that any replacement...

To me this would boil down to determining whether a field should be quoted or not in the resulting JSON. This doesn't hold true just for `decimal.Decimal` but also for...