banshee r5167 - in trunk/banshee: . src/Core/Banshee.Services/Banshee.Database
- From: gburt svn gnome org
- To: svn-commits-list gnome org
- Subject: banshee r5167 - in trunk/banshee: . src/Core/Banshee.Services/Banshee.Database
- Date: Thu, 26 Mar 2009 18:12:31 +0000 (UTC)
Author: gburt
Date: Thu Mar 26 18:12:31 2009
New Revision: 5167
URL: http://svn.gnome.org/viewvc/banshee?rev=5167&view=rev
Log:
2009-03-26 Gabriel Burt <gabriel burt gmail com>
* src/Core/Banshee.Services/Banshee.Database/BansheeDbFormatMigrator.cs:
Update some indices to use the new SortKey columns.
Modified:
trunk/banshee/ChangeLog
trunk/banshee/src/Core/Banshee.Services/Banshee.Database/BansheeDbFormatMigrator.cs
Modified: trunk/banshee/src/Core/Banshee.Services/Banshee.Database/BansheeDbFormatMigrator.cs
==============================================================================
--- trunk/banshee/src/Core/Banshee.Services/Banshee.Database/BansheeDbFormatMigrator.cs (original)
+++ trunk/banshee/src/Core/Banshee.Services/Banshee.Database/BansheeDbFormatMigrator.cs Thu Mar 26 18:12:31 2009
@@ -53,7 +53,7 @@
// NOTE: Whenever there is a change in ANY of the database schema,
// this version MUST be incremented and a migration method
// MUST be supplied to match the new version number
- protected const int CURRENT_VERSION = 29;
+ protected const int CURRENT_VERSION = 30;
protected const int CURRENT_METADATA_VERSION = 5;
#region Migration Driver
@@ -697,6 +697,24 @@
#endregion
+#region Version 30
+
+ [DatabaseVersion (30)]
+ private bool Migrate_30 ()
+ {
+ Execute ("DROP INDEX IF EXISTS CoreAlbumsIndex");
+ Execute ("DROP INDEX IF EXISTS CoreAlbumsArtistIndex");
+ Execute ("DROP INDEX IF EXISTS CoreArtistsIndex");
+ Execute ("CREATE INDEX CoreAlbumsIndex ON CoreAlbums(ArtistID, TitleSortKey)");
+ Execute ("CREATE INDEX CoreAlbumsArtistIndex ON CoreAlbums(TitleSortKey, ArtistNameSortKey)");
+ Execute ("CREATE INDEX CoreArtistsIndex ON CoreArtists(NameSortKey)");
+ Execute ("ANALYZE");
+ return true;
+ }
+
+#endregion
+
+
#pragma warning restore 0169
#region Fresh database setup
@@ -791,6 +809,7 @@
FileModifiedStamp INTEGER
)
", (int)TrackMediaAttributes.Default, (int)StreamPlaybackError.None));
+
Execute("CREATE INDEX CoreTracksPrimarySourceIndex ON CoreTracks(ArtistID, AlbumID, PrimarySourceID, Disc, TrackNumber, Uri)");
Execute("CREATE INDEX CoreTracksAggregatesIndex ON CoreTracks(FileSize, Duration)");
Execute("CREATE INDEX CoreTracksExternalIDIndex ON CoreTracks(PrimarySourceID, ExternalID)");
@@ -823,8 +842,8 @@
Rating INTEGER
)
");
- Execute("CREATE INDEX CoreAlbumsIndex ON CoreAlbums(ArtistID, TitleLowered)");
- Execute("CREATE INDEX CoreAlbumsArtistIndex ON CoreAlbums(TitleLowered, ArtistNameLowered)");
+ Execute ("CREATE INDEX CoreAlbumsIndex ON CoreAlbums(ArtistID, TitleSortKey)");
+ Execute ("CREATE INDEX CoreAlbumsArtistIndex ON CoreAlbums(TitleSortKey, ArtistNameSortKey)");
Execute(@"
CREATE TABLE CoreArtists (
@@ -838,7 +857,7 @@
Rating INTEGER
)
");
- Execute("CREATE INDEX CoreArtistsIndex ON CoreArtists(NameLowered)");
+ Execute ("CREATE INDEX CoreArtistsIndex ON CoreArtists(NameSortKey)");
Execute(@"
CREATE TABLE CorePlaylists (
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]