banshee r3715 - in trunk/banshee: . src/Core/Banshee.Services/Banshee.Database



Author: gburt
Date: Tue Apr  8 04:27:21 2008
New Revision: 3715
URL: http://svn.gnome.org/viewvc/banshee?rev=3715&view=rev

Log:
2008-04-07  Gabriel Burt  <gabriel burt gmail com>

	* src/Core/Banshee.Services/Banshee.Database/BansheeDbConnection.cs:
	Disable the case-sensitive LIKEs pragma as it was breaking queries.  Fixes
	BGO #526371.


Modified:
   trunk/banshee/ChangeLog
   trunk/banshee/src/Core/Banshee.Services/Banshee.Database/BansheeDbConnection.cs

Modified: trunk/banshee/src/Core/Banshee.Services/Banshee.Database/BansheeDbConnection.cs
==============================================================================
--- trunk/banshee/src/Core/Banshee.Services/Banshee.Database/BansheeDbConnection.cs	(original)
+++ trunk/banshee/src/Core/Banshee.Services/Banshee.Database/BansheeDbConnection.cs	Tue Apr  8 04:27:21 2008
@@ -52,7 +52,9 @@
             Execute ("PRAGMA synchronous = OFF");
             Execute ("PRAGMA temp_store = MEMORY");
             Execute ("PRAGMA count_changes = OFF");
-            Execute ("PRAGMA case_sensitive_like=ON");
+
+            // don't want this on because it breaks searching/smart playlists.  See BGO #526371
+            //Execute ("PRAGMA case_sensitive_like=ON");
 
             migrator = new BansheeDbFormatMigrator (this);
             



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]