Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(781)

Unified Diff: tools/metrics/histograms/histograms.xml

Side-by-side diff isn't available for this file because of its large size.
Issue 2710823005: [sql] RecoverDatabase() deletes SQLITE_NOTADB databases. (Closed)
Patch Set: Comment on enum required to match histogram enumeration. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
« no previous file with comments | « sql/recovery_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 47f4d39d47ace9034bb182298b35e380f1b64186..d78593c90b498d5868e1bf7a59b9194400f47b26 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -107778,6 +107778,21 @@ value.
<int value="27" label="RECOVERY_FAILED_AUTORECOVERDB_AUX">
Autorecover failed when recovering triggers, views, or virtual tables.
</int>
+ <int value="28" label="RECOVERY_FAILED_AUTORECOVERDB_NOTADB_DELETE">
+ Autorecover failed setup with NOTADB, then failed deleting the db.
+ </int>
+ <int value="29" label="RECOVERY_FAILED_AUTORECOVERDB_NOTADB_REOPEN">
+ Autorecover failed setup with NOTADB, then failed to re-open the db after
+ deleting it.
+ </int>
+ <int value="30" label="RECOVERY_FAILED_AUTORECOVERDB_NOTADB_QUERY">
+ Autorecover failed setup with NOTADB, then failed to query the db after
+ deleting it.
+ </int>
+ <int value="31" label="RECOVERY_SUCCESS_AUTORECOVERDB_NOTADB_DELETE">
+ Autorecover failed setup with NOTADB, then successfully deleted the
+ unrecoverable db and verified that it now works.
+ </int>
</enum>
<enum name="SqliteStatsEnum" type="int">
« no previous file with comments | « sql/recovery_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698