Driver is the BigQuery driver.
| 34 | |
| 35 | // Driver is the BigQuery driver. |
| 36 | type Driver struct { |
| 37 | config db.ConnectionConfig |
| 38 | connCtx db.ConnectionContext |
| 39 | client *dynamodb.Client |
| 40 | awsConfig aws.Config |
| 41 | } |
| 42 | |
| 43 | func newDriver() db.Driver { |
| 44 | return &Driver{} |
nothing calls this directly
no outgoing calls
no test coverage detected