# # patch "ChangeLog" # from [ab7195d66056ba47082fab760cffdf7bd8f57d1a] # to [883818accc112ef7043512ae7196b4a564bd417c] # # patch "schema_migration.cc" # from [38c6a6d8a82751cc80ff017b0a7f863d0b50eac6] # to [282f8216d2face69303858b84939b3f01ffdd6c6] # ======================================================================== --- ChangeLog ab7195d66056ba47082fab760cffdf7bd8f57d1a +++ ChangeLog 883818accc112ef7043512ae7196b4a564bd417c @@ -1,3 +1,9 @@ +2005-09-20 Matthew Gregan + + * schema_migration.cc (calculate_schema_id): Explicitly exclude + sqlite_stat1 table from schema ID calculation. This is a new + magic table created by the 'analyze' command in SQLite >= 3.2.3. + 2005-09-18 Nathaniel Smith * po/ja.po: New translation from Satoru SATOH . ======================================================================== --- schema_migration.cc 38c6a6d8a82751cc80ff017b0a7f863d0b50eac6 +++ schema_migration.cc 282f8216d2face69303858b84939b3f01ffdd6c6 @@ -156,6 +156,7 @@ // those are auto-generated indices (for // UNIQUE constraints, etc.). "AND sql IS NOT NULL " + "AND name != 'sqlite_stat1' " "ORDER BY name", &append_sql_stmt, &tmp, NULL); if (res != SQLITE_OK)