Matt Mueller
Matt Mueller
Totally understand! And thanks for the discussion earlier – I learned a lot from this issue :-)
dang this looks awesome. just a quick test on some bigger repos and I found some bugs: - doesn't work for scoped packages yet (ex. @scope/package) or at least doesn't...
I've also run into this as well. I think it's very much a bug still. The `zip` command on OSX and archiver libraries like this one https://github.com/tj/go-archive work as expected.
@ricardbejarano What's your terraform code look like? Are you using `source_file` or `source { content }`?
@ricardbejarano ah okay, I hadn't tried the `source_file`, just `source { content = ... }`.. It's weird cause it's zipped up with world-readable, and unzipped with world-readable, but still causes...
Here's a crazy table for Postgres. Surprisingly, introspection works, lots of columns end up as strings, but at least my computer didn't blow up in my face, so that's a...
Not sure if this is intentional or not, but one thing to note here is that I think it's important to test types like `numeric [ (p, s) ]`. Your...
| Data Type | Alias | Description | | -------------------------------------- | ------------------ | ------------------------------------------------ | | bigint | int8 | signed eight-byte integer | | bigserial | serial8 | autoincrementing...
You probably want something like: ``` numeric_arbitrary_numeric numeric, numeric_arbitrary_numeric2 numeric(7, 1), numeric_arbitrary_numeric3 numeric(2, 7) ``` Some variety to ensure that introspection can also handle explicit parameters.
Yah, might be best to wait for sessions. In the meantime, you can always add the validate function to the method body. I'll try and get sessions added soon!