VerifyVersion verify schema version is up to date
()
| 114 | |
| 115 | // VerifyVersion verify schema version is up to date |
| 116 | func (pdb *db) VerifyVersion() error { |
| 117 | expectedVersion := pdb.ExpectedVersion() |
| 118 | return schema.VerifyCompatibleVersion(pdb, pdb.dbName, expectedVersion) |
| 119 | } |
| 120 | |
| 121 | // Commit commits a previously started transaction |
| 122 | func (pdb *db) Commit() error { |
nothing calls this directly
no test coverage detected