Merge pull request #1516 from jellyfin/EraYaN-vacuum-merge-fix

Move VACUUM command to fix merge error
This commit is contained in:
Bond-009 2019-07-06 23:57:27 +02:00 committed by GitHub
commit f2a56fcd80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -124,6 +124,9 @@ namespace Emby.Server.Implementations.Data
}
WriteConnection.Execute("PRAGMA temp_store=" + (int)TempStore);
// Configuration and pragmas can affect VACUUM so it needs to be last.
WriteConnection.Execute("VACUUM");
return new ManagedConnection(WriteConnection, WriteLock);
}
@ -170,8 +173,6 @@ namespace Emby.Server.Implementations.Data
columnNames.Add(name);
}
}
// Configuration and pragmas can affect VACUUM so it needs to be last.
queries.Add("VACUUM");
return columnNames;
}