Driver is the BigQuery driver.
| 33 | |
| 34 | // Driver is the BigQuery driver. |
| 35 | type Driver struct { |
| 36 | config db.ConnectionConfig |
| 37 | connCtx db.ConnectionContext |
| 38 | client *bigquery.Client |
| 39 | |
| 40 | // databaseName is the currently connected database name. |
| 41 | databaseName string |
| 42 | } |
| 43 | |
| 44 | func newDriver() db.Driver { |
| 45 | return &Driver{} |
nothing calls this directly
no outgoing calls
no test coverage detected