mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Move VACUUM command to fix merge error
This fixes a syntax error.
This commit is contained in:
parent
3b49c1bac0
commit
0dbc294836
@ -125,6 +125,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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user