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

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

Issue 1610963002: Import 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
« no previous file with comments | « third_party/sqlite/src/tool/varint.c ('k') | third_party/sqlite/src/tool/warnings.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/tool/vdbe_profile.tcl
diff --git a/third_party/sqlite/src/tool/vdbe_profile.tcl b/third_party/sqlite/src/tool/vdbe_profile.tcl
index fb1f955391ae2782147796fe9848a3c156bb184d..a0dc99ec33a95de9074e42c51b4297074322db89 100644
--- a/third_party/sqlite/src/tool/vdbe_profile.tcl
+++ b/third_party/sqlite/src/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/src/tool/varint.c ('k') | third_party/sqlite/src/tool/warnings.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698