Driver is the MySQL driver.
| 62 | |
| 63 | // Driver is the MySQL driver. |
| 64 | type Driver struct { |
| 65 | dbType storepb.Engine |
| 66 | db *sql.DB |
| 67 | databaseName string |
| 68 | sshClient *ssh.Client |
| 69 | |
| 70 | // Called upon driver.Open() finishes. |
| 71 | openCleanUp []func() |
| 72 | } |
| 73 | |
| 74 | func newDriver() db.Driver { |
| 75 | return &Driver{} |
nothing calls this directly
no outgoing calls
no test coverage detected