AdamDrewsTR

Results 14 comments of AdamDrewsTR

@wchengru I tested this today, and I still have the same result: a content decoding error that only happens when running locally. It works fine in AWS still, however. edit:...

This is still an issue in version 1.68.0 - returning `isBase64Encoded: true` with gzipped content works when deployed but not locally via sam.

From that same toolchain doc: `The syntax ‘1.N’ is called a “language version”. It denotes the overall family of Go releases implementing that version of the Go language and standard...

> > By specifying go 1.22.0 you are effectively saying ONLY 1.22.0 is OK for use. > > No, as per [go.dev/doc/modules/gomod-ref#go-notes](https://go.dev/doc/modules/gomod-ref#go-notes): > > > The go directive sets the...

Same issue here. We have existing hosted zones to deploy to, and we are unable to create our own. Being able to reference an existing one would solve this.

It treats a UUID as an array, which makes sense. It is an alias for an array of bytes that can be written as a string: https://go.dev/play/p/D8KVUFx1M_z

@sfc-gh-dszmolka It is more like below where the google uuid.UUID is the struct type, and the column is declared as a varchar in Snowflake. When binding, the raw uuid.UUID values...

You'll also see that if you change the UUID to a string, it will update the row: ` _, err = conn.ExecContext(ctx, query, true, theId.String())`

Updating this: https://go.dev/play/p/iLBnvDe-3ES My colleague also just pointed out that uuid.UUID implements Valuer that returns the db.Value back; that isn't being honored anymore. https://pkg.go.dev/database/sql/driver#Valuer