Driver is the Spanner driver.
| 47 | |
| 48 | // Driver is the Spanner driver. |
| 49 | type Driver struct { |
| 50 | config db.ConnectionConfig |
| 51 | connCtx db.ConnectionContext |
| 52 | client *spanner.Client |
| 53 | dbClient *spannerdb.DatabaseAdminClient |
| 54 | |
| 55 | // databaseName is the currently connected database name. |
| 56 | databaseName string |
| 57 | } |
| 58 | |
| 59 | func newDriver() db.Driver { |
| 60 | return &Driver{} |
nothing calls this directly
no outgoing calls
no test coverage detected