You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This was a simple case of passing entirely the wrong data as an
argument to the `upgradeDatabase` call in `queries.ts`. We were
passing the list of search paths for upgrades, when we should have
been passing the list of directories directly containing upgrade
scripts to be applied.
// info.finalDbscheme is which database we're able to upgrade to
466
-
constupgradableTo=awaithash(info.finalDbscheme);
466
+
constupgradableTo=awaithash(finalDbscheme);
467
467
468
468
if(upgradableTo!=dbschemeOfLib){
469
469
logger.log(`Query ${query.program.queryPath} expects database scheme ${query.queryDbscheme}, but database has scheme ${query.program.dbschemePath}, and no upgrade path found`);
@@ -476,8 +476,8 @@ async function checkDbschemeCompatibility(
0 commit comments