go-sql-spanner
go-sql-spanner copied to clipboard
Google Cloud Spanner driver for Go's database/sql package.
:robot: I have created a release *beep* *boop* --- ## [1.3.1](https://github.com/googleapis/go-sql-spanner/compare/v1.3.0...v1.3.1) (2024-03-18) ### Bug Fixes * **deps:** Update google.golang.org/genproto/googleapis/rpc digest to 6e1732d ([#210](https://github.com/googleapis/go-sql-spanner/issues/210)) ([adeee59](https://github.com/googleapis/go-sql-spanner/commit/adeee596a12d16788d4787524929b8671cc59786)) * **deps:** Update module cloud.google.com/go/longrunning to...
Adds a connection variable named `exclude_txn_from_change_streams` that can be used to exclude the next transaction from creating mutations for all change streams that have been created with the DDL option...
ExecQuery with a DML statement with THEN RETURN in AutoCommit=true mode uses read-only transaction
Calling `ExecQuery` (or similar) with a DML statement that contains a `THEN RETURN` clause while the connection is in auto-commit mode, causes the driver to try to execute the DML...
:robot: I have created a release *beep* *boop* --- ## [1.3.2](https://github.com/googleapis/go-sql-spanner/compare/v1.3.1...v1.3.2) (2024-05-13) ### Bug Fixes * **deps:** Update module cloud.google.com/go to v0.113.0 ([#232](https://github.com/googleapis/go-sql-spanner/issues/232)) ([c2dd030](https://github.com/googleapis/go-sql-spanner/commit/c2dd0303a8b788947e4190659ae87dd67dbf941e)) * **deps:** Update module cloud.google.com/go/longrunning to...
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | Type | Update | |---|---|---|---|---|---|---|---| | [cloud.google.com/go/longrunning](https://togithub.com/googleapis/google-cloud-go) | `v0.5.8`...
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [google.golang.org/grpc](https://togithub.com/grpc/grpc-go) | `v1.64.0` -> `v1.64.1` | [](https://docs.renovatebot.com/merge-confidence/)...
Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.64.0 to 1.64.1. Release notes Sourced from google.golang.org/grpc's releases. Release 1.64.1 Dependencies Update x/net/http2 to address CVE-2023-45288 (#7352) metadata: remove String method from MD to make printing...
Static analysis tools are an easy way to find bugs. Fixes #249
`go vet` indicates there's a mistake related to the code in https://github.com/googleapis/go-sql-spanner/blob/6c5c8cb70166ae0abe0f8b2c764cf1970f8cab96/statement_parser.go#L298 ``` $ go vet ./... # github.com/googleapis/go-sql-spanner # [github.com/googleapis/go-sql-spanner] ./statement_parser.go:298:3: self-assignment of sql to sql ``` This also...