Knut Olav Løite

Results 112 issues of 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,...

type: process
priority: p3

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;...

type: feature request
priority: p3

E.g. support the following: ``` show transaction isolation level; ```

type: feature request
priority: p3

Consider supporting named parameters in combination with PostgreSQL-dialect databases. This could potentially support both of these parameter name formats: - `@name` - `:name`

type: feature request
priority: p3

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.

type: feature request
priority: p3

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,...

type: feature request
priority: p3

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`.

type: feature request
priority: p3

Adds a sample for the UUID data type.

Adds code for the new Spanner ADO.NET driver.