Knut Olav Løite
Knut Olav Løite
``` --- FAIL: TestPostgreSQL (1.30s) integration_test.go:2413: failed to insert row: spanner: code = "InvalidArgument", desc = "Previously received a different request with this seqno. seqno=2\nRequested SQL: INSERT INTO test (id,...
Support SAVEPOINT commands using locally emulated savepoints: ``` begin; insert into foo (id, value) values (1, 'one'); savepoint s1; insert into foo (id, value) values (2, 'two'); rollback to s1;...
E.g. support the following: ``` show transaction isolation level; ```
Consider supporting named parameters in combination with PostgreSQL-dialect databases. This could potentially support both of these parameter name formats: - `@name` - `:name`
Currently, query parameter names are treated as case-sensitive by the database/sql driver and SpannerLib. Check whether it would be better to make this case-insensitive.
Add a Cancel function to the public API of Spanner Lib that allows an application to cancel a running statement (other than one that has already returned a Rows object,...
Add a `search_path` connection variable. The value of this variable should be set on all `ExecuteSqlRequest` instances and other requests that support a `search_path`.
Adds a sample for the UUID data type.
Adds code for the new Spanner ADO.NET driver.