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

Unified Diff: third_party/sqlite/sqlite-src-3100200/tool/vdbe_profile.tcl

Issue 1610543003: [sql] Import reference version of SQLite 3.10.2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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:
View side-by-side diff with in-line comments
Download patch
Index: third_party/sqlite/sqlite-src-3100200/tool/vdbe_profile.tcl
diff --git a/third_party/sqlite/sqlite-src-3080704/tool/vdbe_profile.tcl b/third_party/sqlite/sqlite-src-3100200/tool/vdbe_profile.tcl
similarity index 86%
copy from third_party/sqlite/sqlite-src-3080704/tool/vdbe_profile.tcl
copy to third_party/sqlite/sqlite-src-3100200/tool/vdbe_profile.tcl
index fb1f955391ae2782147796fe9848a3c156bb184d..a0dc99ec33a95de9074e42c51b4297074322db89 100644
--- a/third_party/sqlite/sqlite-src-3080704/tool/vdbe_profile.tcl
+++ b/third_party/sqlite/sqlite-src-3100200/tool/vdbe_profile.tcl
@@ -1,8 +1,16 @@
#!/bin/tclsh
#
+# SUMMARY:
# Run this script in the same directory as the "vdbe_profile.out" file.
# This script summarizes the results contained in that file.
#
+# DETAILS:
+# Compile SQLite using the -DVDBE_PROFILE option on Linux. This causes
+# performance information about individual VDBE operations to be appended
+# to the "vdbe_profile.out" file. After content has been accumulated in
+# vdbe_profile.out, run this script to analyze the output and generate a
+# report.
+#
if {![file readable vdbe_profile.out]} {
error "run this script in the same directory as the vdbe_profile.out file"
}
« no previous file with comments | « third_party/sqlite/sqlite-src-3100200/tool/vdbe-compress.tcl ('k') | third_party/sqlite/sqlite-src-3100200/tool/warnings.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698